[][src]Enum stm32f4xx_hal::stm32::dma2::st::fcr::FSR

pub enum FSR {
    QUARTER1,
    QUARTER2,
    QUARTER3,
    QUARTER4,
    EMPTY,
    FULL,
    _Reserved(u8),
}

Possible values of the field FS

Variants

QUARTER1

0 < fifo_level < 1/4

QUARTER2

1/4 <= fifo_level < 1/2

QUARTER3

1/2 <= fifo_level < 3/4

QUARTER4

3/4 <= fifo_level < full

EMPTY

FIFO is empty

FULL

FIFO is full

_Reserved(u8)

Reserved

Methods

impl FSR[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_quarter1(&self) -> bool[src]

Checks if the value of the field is QUARTER1

pub fn is_quarter2(&self) -> bool[src]

Checks if the value of the field is QUARTER2

pub fn is_quarter3(&self) -> bool[src]

Checks if the value of the field is QUARTER3

pub fn is_quarter4(&self) -> bool[src]

Checks if the value of the field is QUARTER4

pub fn is_empty(&self) -> bool[src]

Checks if the value of the field is EMPTY

pub fn is_full(&self) -> bool[src]

Checks if the value of the field is FULL

Trait Implementations

impl PartialEq<FSR> for FSR[src]

impl Debug for FSR[src]

impl Clone for FSR[src]

impl Copy for FSR[src]

Auto Trait Implementations

impl Unpin for FSR

impl Send for FSR

impl Sync for FSR

Blanket Implementations

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

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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self