You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// HID-IO Packet Buffer Struct////// # Remarks/// Used to store HID-IO data chunks. Will be chunked into individual packets on transmission.#[repr(C)]#[derive(PartialEq,Clone,Debug, bincode::Encode)]#[cfg_attr(feature = "defmt-impl", derive(defmt::Format))]pubstructHidIoPacketBuffer<constH:usize>{/// Type of packet (Continued is automatically set if needed)pubptype:HidIoPacketType,/// Packet Idpubid:HidIoCommandId,/// Packet length for serialization (in bytes)pubmax_len:u32,/// Payload data, chunking is done automatically by serializerpubdata:Vec<u8,H>,/// Set False if buffer is not complete, True if it ispubdone:bool,}
error: Invalid rust syntax
--> hid-io-protocol/src/lib.rs:85:1
|
85 | /// Requests for to perform a specific action
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The text was updated successfully, but these errors were encountered:
bincode-2.0.0-alpha.0
Some notes:
The text was updated successfully, but these errors were encountered: