#[repr(u8)]pub enum Rightlow {
RIGHT_HIGH = 0,
RIGHT_LOW = 1,
}Variants§
RIGHT_HIGH = 0
The right channel is taken from the high part of the FIFO data. For example, when data is 16 bits, FIFO bits 31:16 are used for the right channel.
RIGHT_LOW = 1
The right channel is taken from the low part of the FIFO data. For example, when data is 16 bits, FIFO bits 15:0 are used for the right channel.
Implementations§
Trait Implementations§
Source§impl Ord for Rightlow
impl Ord for Rightlow
Source§impl PartialOrd for Rightlow
impl PartialOrd for Rightlow
impl Copy for Rightlow
impl Eq for Rightlow
impl StructuralPartialEq for Rightlow
Auto Trait Implementations§
impl Freeze for Rightlow
impl RefUnwindSafe for Rightlow
impl Send for Rightlow
impl Sync for Rightlow
impl Unpin for Rightlow
impl UnwindSafe for Rightlow
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