[][src]Enum stm32f4xx_hal::stm32::sai::ch::cr2::FTHR

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

Possible values of the field FTH

Variants

EMPTY

FIFO empty

QUARTER1

1⁄4 FIFO

QUARTER2

1⁄2 FIFO

QUARTER3

3⁄4 FIFO

FULL

FIFO full

_Reserved(u8)

Reserved

Methods

impl FTHR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is EMPTY

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

Checks if the value of the field is FULL

Trait Implementations

impl PartialEq<FTHR> for FTHR[src]

impl Debug for FTHR[src]

impl Clone for FTHR[src]

impl Copy for FTHR[src]

Auto Trait Implementations

impl Unpin for FTHR

impl Send for FTHR

impl Sync for FTHR

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