pub struct RackTypeData {
pub raw: u8,
pub value: RackType,
}Expand description
§Rack Type Data
Fields§
§raw: u8Raw 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: RackTypeThe contained RackType value
Trait Implementations§
Source§impl Debug for RackTypeData
impl Debug for RackTypeData
Source§impl Deref for RackTypeData
impl Deref for RackTypeData
Source§impl Display for RackTypeData
impl Display for RackTypeData
Source§impl From<u8> for RackTypeData
impl From<u8> for RackTypeData
Auto Trait Implementations§
impl Freeze for RackTypeData
impl RefUnwindSafe for RackTypeData
impl Send for RackTypeData
impl Sync for RackTypeData
impl Unpin for RackTypeData
impl UnsafeUnpin for RackTypeData
impl UnwindSafe for RackTypeData
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