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