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