#[repr(u8)]pub enum Smlane {
SINGLE_LANE = 0,
DUAL_LANE = 1,
_RESERVED_2 = 2,
QUAD_LANE = 3,
}Variants§
SINGLE_LANE = 0
Single lane only
DUAL_LANE = 1
Dual lane capable (single and dual)
_RESERVED_2 = 2
QUAD_LANE = 3
Quad lane capable (single, dual, quad)
Implementations§
Trait Implementations§
Source§impl Ord for Smlane
impl Ord for Smlane
Source§impl PartialOrd for Smlane
impl PartialOrd for Smlane
impl Copy for Smlane
impl Eq for Smlane
impl StructuralPartialEq for Smlane
Auto Trait Implementations§
impl Freeze for Smlane
impl RefUnwindSafe for Smlane
impl Send for Smlane
impl Sync for Smlane
impl Unpin for Smlane
impl UnwindSafe for Smlane
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