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