[][src]Enum nrf52832_hal::target::i2s::config::ratio::RATIOR

pub enum RATIOR {
    _32X,
    _48X,
    _64X,
    _96X,
    _128X,
    _192X,
    _256X,
    _384X,
    _512X,
    _Reserved(u8),
}

Possible values of the field RATIO

Variants

_32X

LRCK = MCK / 32

_48X

LRCK = MCK / 48

_64X

LRCK = MCK / 64

_96X

LRCK = MCK / 96

_128X

LRCK = MCK / 128

_192X

LRCK = MCK / 192

_256X

LRCK = MCK / 256

_384X

LRCK = MCK / 384

_512X

LRCK = MCK / 512

_Reserved(u8)

Reserved

Methods

impl RATIOR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is _32X

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

Checks if the value of the field is _48X

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

Checks if the value of the field is _64X

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

Checks if the value of the field is _96X

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

Checks if the value of the field is _128X

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

Checks if the value of the field is _192X

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

Checks if the value of the field is _256X

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

Checks if the value of the field is _384X

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

Checks if the value of the field is _512X

Trait Implementations

impl PartialEq<RATIOR> for RATIOR[src]

impl Clone for RATIOR[src]

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

Performs copy-assignment from source. Read more

impl Copy for RATIOR[src]

impl Debug for RATIOR[src]

Auto Trait Implementations

impl Send for RATIOR

impl Sync for RATIOR

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