pub struct ManagementDeviceAddressTypeData {
pub raw: u8,
pub value: ManagementDeviceAddressType,
}
Expand description
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: ManagementDeviceAddressType
The contained ManagementDeviceAddressType value
Trait Implementations
sourceimpl Deref for ManagementDeviceAddressTypeData
impl Deref for ManagementDeviceAddressTypeData
type Target = ManagementDeviceAddressType
type Target = ManagementDeviceAddressType
The resulting type after dereferencing.
sourceimpl From<u8> for ManagementDeviceAddressTypeData
impl From<u8> for ManagementDeviceAddressTypeData
Auto Trait Implementations
impl RefUnwindSafe for ManagementDeviceAddressTypeData
impl Send for ManagementDeviceAddressTypeData
impl Sync for ManagementDeviceAddressTypeData
impl Unpin for ManagementDeviceAddressTypeData
impl UnwindSafe for ManagementDeviceAddressTypeData
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