Enum stm32f407g_disc::dma::CurrentBuffer[][src]

pub enum CurrentBuffer {
    FirstBuffer,
    DoubleBuffer,
}

Which DMA buffer is in use.

Variants

FirstBuffer

The first buffer (m0ar) is in use.

DoubleBuffer

The second buffer (m1ar) is in use.

Trait Implementations

impl Clone for CurrentBuffer[src]

impl Copy for CurrentBuffer[src]

impl Debug for CurrentBuffer[src]

impl Not for CurrentBuffer[src]

type Output = CurrentBuffer

The resulting type after applying the ! operator.

impl PartialEq<CurrentBuffer> for CurrentBuffer[src]

impl StructuralPartialEq for CurrentBuffer[src]

Auto Trait Implementations

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.