pub struct ManagementDeviceTypeData {
pub raw: u8,
pub value: ManagementDeviceType,
}
Expand description
§Management Device - Type Data
Fields§
§raw: u8
Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
value: ManagementDeviceType
The contained ManagementDeviceType value
Trait Implementations§
Source§impl Debug for ManagementDeviceTypeData
impl Debug for ManagementDeviceTypeData
Source§impl Deref for ManagementDeviceTypeData
impl Deref for ManagementDeviceTypeData
Source§impl Display for ManagementDeviceTypeData
impl Display for ManagementDeviceTypeData
Source§impl From<u8> for ManagementDeviceTypeData
impl From<u8> for ManagementDeviceTypeData
Auto Trait Implementations§
impl Freeze for ManagementDeviceTypeData
impl RefUnwindSafe for ManagementDeviceTypeData
impl Send for ManagementDeviceTypeData
impl Sync for ManagementDeviceTypeData
impl Unpin for ManagementDeviceTypeData
impl UnwindSafe for ManagementDeviceTypeData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more