#[repr(u8)]pub enum SdiBitOrder {
MsbFirst = 0,
LsbFirst = 1,
}Expand description
The bit order for the SDI interface
Variants§
Trait Implementations§
Source§impl Clone for SdiBitOrder
impl Clone for SdiBitOrder
Source§fn clone(&self) -> SdiBitOrder
fn clone(&self) -> SdiBitOrder
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 moreSource§impl Debug for SdiBitOrder
impl Debug for SdiBitOrder
Source§impl From<SdiBitOrder> for u8
impl From<SdiBitOrder> for u8
Source§fn from(val: SdiBitOrder) -> Self
fn from(val: SdiBitOrder) -> Self
Converts to this type from the input type.
Source§impl Hash for SdiBitOrder
impl Hash for SdiBitOrder
Source§impl PartialEq for SdiBitOrder
impl PartialEq for SdiBitOrder
Source§fn eq(&self, other: &SdiBitOrder) -> bool
fn eq(&self, other: &SdiBitOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u8> for SdiBitOrder
impl TryFrom<u8> for SdiBitOrder
impl Copy for SdiBitOrder
impl Eq for SdiBitOrder
impl StructuralPartialEq for SdiBitOrder
Auto Trait Implementations§
impl Freeze for SdiBitOrder
impl RefUnwindSafe for SdiBitOrder
impl Send for SdiBitOrder
impl Sync for SdiBitOrder
impl Unpin for SdiBitOrder
impl UnsafeUnpin for SdiBitOrder
impl UnwindSafe for SdiBitOrder
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