#[non_exhaustive]pub struct Sel {
pub flags: u8,
pub offshift: u8,
pub nkeys: u8,
pub offmask: u16,
pub off: u16,
pub offoff: u16,
pub hoff: u16,
pub hmask: u32,
pub keys: Vec<Key>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.flags: u8
§offshift: u8
§nkeys: u8
§offmask: u16
§off: u16
§offoff: u16
§hoff: u16
§hmask: u32
§keys: Vec<Key>
Trait Implementations§
impl Eq for Sel
impl StructuralEq for Sel
impl StructuralPartialEq for Sel
Auto Trait Implementations§
impl RefUnwindSafe for Sel
impl Send for Sel
impl Sync for Sel
impl Unpin for Sel
impl UnwindSafe for Sel
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