pub struct ModeData {
pub mode_id: u32,
pub mode_name_size: u16,
pub mode_name: String,
}
Expand description
Mode details within a mode list.
Fields§
§mode_id: u32
Mode ID
mode_name_size: u16
Length of the mode name
mode_name: String
The name of the mode (variable length, depending on mode_name_size
)
Trait Implementations§
impl Eq for ModeData
impl StructuralPartialEq for ModeData
Auto Trait Implementations§
impl Freeze for ModeData
impl RefUnwindSafe for ModeData
impl Send for ModeData
impl Sync for ModeData
impl Unpin for ModeData
impl UnwindSafe for ModeData
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