Enum stm32h7xx_hal::device::sai4::ch::cr1::MONO_A[][src]

pub enum MONO_A {
    STEREO,
    MONO,
}

Mono mode. This bit is set and cleared by software. It is meaningful only when the number of slots is equal to 2. When the mono mode is selected, slot 0 data are duplicated on slot 1 when the audio block operates as a transmitter. In reception mode, the slot1 is discarded and only the data received from slot 0 are stored. Refer to Section: Mono/stereo mode for more details.

Value on reset: 0

Variants

STEREO

0: Stereo mode

MONO

1: Mono mode

Trait Implementations

impl Clone for MONO_A[src]

impl Copy for MONO_A[src]

impl Debug for MONO_A[src]

impl PartialEq<MONO_A> for MONO_A[src]

impl StructuralPartialEq for MONO_A[src]

Auto Trait Implementations

impl Send for MONO_A

impl Sync for MONO_A

impl Unpin for MONO_A

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.