Enum stm32_metapac::sai::vals::Syncen
#[repr(u8)]pub enum Syncen {
ASYNCHRONOUS = 0,
INTERNAL = 1,
EXTERNAL = 2,
_RESERVED_3 = 3,
}
Variants§
ASYNCHRONOUS = 0
audio sub-block in asynchronous mode
INTERNAL = 1
audio sub-block is synchronous with the other internal audio sub-block. In this case, the audio sub-block must be configured in slave mode
EXTERNAL = 2
audio sub-block is synchronous with an external SAI embedded peripheral. In this case the audio sub-block should be configured in Slave mode
_RESERVED_3 = 3
Implementations§
Trait Implementations§
§impl Ord for Syncen
impl Ord for Syncen
§impl PartialOrd for Syncen
impl PartialOrd for Syncen
§fn partial_cmp(&self, other: &Syncen) -> Option<Ordering>
fn partial_cmp(&self, other: &Syncen) -> 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 Syncen
impl Eq for Syncen
impl StructuralEq for Syncen
impl StructuralPartialEq for Syncen
Auto Trait Implementations§
impl RefUnwindSafe for Syncen
impl Send for Syncen
impl Sync for Syncen
impl Unpin for Syncen
impl UnwindSafe for Syncen
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