pub enum I2sStandard {
Philips = 0,
MsbJustified = 1,
LsbJustified = 2,
Pcm = 3,
}Expand description
I2S standard
Variants§
Philips = 0
I2S Philips standard.
MsbJustified = 1
MSB justified standard (left justified)
LsbJustified = 2
LSB justified standard (right justified)
Pcm = 3
PCM standard
Auto Trait Implementations§
impl Freeze for I2sStandard
impl RefUnwindSafe for I2sStandard
impl Send for I2sStandard
impl Sync for I2sStandard
impl Unpin for I2sStandard
impl UnwindSafe for I2sStandard
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