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