pub struct Ack<const S: usize> {
pub property: Property,
pub os: OsType,
pub number: u16,
pub string: String<S>,
}Fields
property: Propertyos: OsTypeOS Type field
number: u16Number is set when the given property specifies a number
string: String<S>String is set when the given property specifies a string Should be 1 byte less than the max hidio data buffer size
Trait Implementations
Auto Trait Implementations
impl<const S: usize> RefUnwindSafe for Ack<S>
impl<const S: usize> Send for Ack<S>
impl<const S: usize> Sync for Ack<S>
impl<const S: usize> Unpin for Ack<S>
impl<const S: usize> UnwindSafe for Ack<S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more