pub enum InterfaceFormat {
LeftJustified,
I2S,
RightJustified,
}Expand description
Interface format of the I2S stream
Variants§
Trait Implementations§
Source§impl Clone for InterfaceFormat
impl Clone for InterfaceFormat
Source§fn clone(&self) -> InterfaceFormat
fn clone(&self) -> InterfaceFormat
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 moreimpl Copy for InterfaceFormat
Source§impl Debug for InterfaceFormat
impl Debug for InterfaceFormat
Source§impl From<InterfaceFormat> for u8
impl From<InterfaceFormat> for u8
Source§fn from(interface_format: InterfaceFormat) -> Self
fn from(interface_format: InterfaceFormat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterfaceFormat
impl PartialEq for InterfaceFormat
Source§fn eq(&self, other: &InterfaceFormat) -> bool
fn eq(&self, other: &InterfaceFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InterfaceFormat
Auto Trait Implementations§
impl Freeze for InterfaceFormat
impl RefUnwindSafe for InterfaceFormat
impl Send for InterfaceFormat
impl Sync for InterfaceFormat
impl Unpin for InterfaceFormat
impl UnsafeUnpin for InterfaceFormat
impl UnwindSafe for InterfaceFormat
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