[][src]Enum stm32l4xx_hal::rcc::MsiFreq

pub enum MsiFreq {
    RANGE100K,
    RANGE200K,
    RANGE400K,
    RANGE800K,
    RANGE1M,
    RANGE2M,
    RANGE4M,
    RANGE8M,
    RANGE16M,
    RANGE24M,
    RANGE32M,
    RANGE48M,
}

Variants

RANGE100K

range 0 around 100 kHz

RANGE200K

range 1 around 200 kHz

RANGE400K

range 2 around 400 kHz

RANGE800K

range 3 around 800 kHz

RANGE1M

range 4 around 1 MHz

RANGE2M

range 5 around 2 MHz

RANGE4M

range 6 around 4 MHz

RANGE8M

range 7 around 8 MHz

RANGE16M

range 8 around 16 MHz

RANGE24M

range 9 around 24 MHz

RANGE32M

range 10 around 32 MHz

RANGE48M

range 11 around 48 MHz

Trait Implementations

impl Copy for MsiFreq[src]

impl PartialEq<MsiFreq> for MsiFreq[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for MsiFreq[src]

impl Clone for MsiFreq[src]

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

Performs copy-assignment from source. Read more

impl Debug for MsiFreq[src]

Auto Trait Implementations

impl Send for MsiFreq

impl Sync for MsiFreq

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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