pub struct FirmwareInventoryCharacteristics {
pub raw: u16,
}
Expand description
Fields
raw: u16
Raw value
raw is useful when there are values not yet defiend. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
Implementations
Trait Implementations
sourceimpl From<u16> for FirmwareInventoryCharacteristics
impl From<u16> for FirmwareInventoryCharacteristics
sourceimpl PartialEq<FirmwareInventoryCharacteristics> for FirmwareInventoryCharacteristics
impl PartialEq<FirmwareInventoryCharacteristics> for FirmwareInventoryCharacteristics
sourcefn eq(&self, other: &FirmwareInventoryCharacteristics) -> bool
fn eq(&self, other: &FirmwareInventoryCharacteristics) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FirmwareInventoryCharacteristics) -> bool
fn ne(&self, other: &FirmwareInventoryCharacteristics) -> bool
This method tests for !=
.
impl Eq for FirmwareInventoryCharacteristics
impl StructuralEq for FirmwareInventoryCharacteristics
impl StructuralPartialEq for FirmwareInventoryCharacteristics
Auto Trait Implementations
impl RefUnwindSafe for FirmwareInventoryCharacteristics
impl Send for FirmwareInventoryCharacteristics
impl Sync for FirmwareInventoryCharacteristics
impl Unpin for FirmwareInventoryCharacteristics
impl UnwindSafe for FirmwareInventoryCharacteristics
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