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