[][src]Enum stm32f4xx_hal::stm32::dma2::s4fcr::FSR

pub enum FSR {
    FIRSTQUARTER,
    SECONDQUARTER,
    THIRDQUARTER,
    FOURTHQUARTER,
    EMPTY,
    FULL,
    _Reserved(u8),
}

Possible values of the field FS

Variants

FIRSTQUARTER

0 < fifo_level < 1/4

SECONDQUARTER

1/4 <= fifo_level < 1/2

THIRDQUARTER

1/2 <= fifo_level < 3/4

FOURTHQUARTER

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_first_quarter(&self) -> bool[src]

Checks if the value of the field is FIRSTQUARTER

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

Checks if the value of the field is SECONDQUARTER

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

Checks if the value of the field is THIRDQUARTER

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

Checks if the value of the field is FOURTHQUARTER

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 Clone for FSR[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for FSR[src]

impl Debug for FSR[src]

impl PartialEq<FSR> for FSR[src]

Auto Trait Implementations

impl Send for FSR

impl Sync for FSR

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self