pub struct VariableDataFormatTypeData {
pub raw: u8,
pub value: VariableDataFormatType,
}
Expand description
§System Event Log - Variable Data Format 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: VariableDataFormatType
The contained VariableDataFormatType value
Trait Implementations§
Source§impl Debug for VariableDataFormatTypeData
impl Debug for VariableDataFormatTypeData
Source§impl Deref for VariableDataFormatTypeData
impl Deref for VariableDataFormatTypeData
Source§impl Display for VariableDataFormatTypeData
impl Display for VariableDataFormatTypeData
Source§impl From<u8> for VariableDataFormatTypeData
impl From<u8> for VariableDataFormatTypeData
Auto Trait Implementations§
impl Freeze for VariableDataFormatTypeData
impl RefUnwindSafe for VariableDataFormatTypeData
impl Send for VariableDataFormatTypeData
impl Sync for VariableDataFormatTypeData
impl Unpin for VariableDataFormatTypeData
impl UnwindSafe for VariableDataFormatTypeData
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