Enum stm32_metapac::spi::vals::I2sstd
#[repr(u8)]pub enum I2sstd {
PHILIPS = 0,
MSB = 1,
LSB = 2,
PCM = 3,
}
Variants§
PHILIPS = 0
I2S Philips standard
MSB = 1
MSB justified standard
LSB = 2
LSB justified standard
PCM = 3
PCM standard
Implementations§
Trait Implementations§
§impl Ord for I2sstd
impl Ord for I2sstd
§impl PartialOrd for I2sstd
impl PartialOrd for I2sstd
§fn partial_cmp(&self, other: &I2sstd) -> Option<Ordering>
fn partial_cmp(&self, other: &I2sstd) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for I2sstd
impl Eq for I2sstd
impl StructuralPartialEq for I2sstd
Auto Trait Implementations§
impl Freeze for I2sstd
impl RefUnwindSafe for I2sstd
impl Send for I2sstd
impl Sync for I2sstd
impl Unpin for I2sstd
impl UnwindSafe for I2sstd
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