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