pub struct SohmTableMessage {
pub version: u8,
pub table_address: u64,
pub nindexes: u8,
}Expand description
Parsed Shared Message Table message (type 0x000F from superblock extension).
Fields§
§version: u8Version of the shared message table message.
table_address: u64Address of the SOHM table (SMTB structure).
nindexes: u8Number of shared message indexes.
Trait Implementations§
Source§impl Clone for SohmTableMessage
impl Clone for SohmTableMessage
Source§fn clone(&self) -> SohmTableMessage
fn clone(&self) -> SohmTableMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SohmTableMessage
impl RefUnwindSafe for SohmTableMessage
impl Send for SohmTableMessage
impl Sync for SohmTableMessage
impl Unpin for SohmTableMessage
impl UnsafeUnpin for SohmTableMessage
impl UnwindSafe for SohmTableMessage
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