[][src]Enum stm32l0xx_hal::device::rcc::cfgr::MCOSELR

pub enum MCOSELR {
    NOCLOCK,
    SYSCLK,
    HSI16,
    MSI,
    HSE,
    PLL,
    LSI,
    LSE,
}

Possible values of the field MCOSEL

Variants

NOCLOCK

No clock

SYSCLK

SYSCLK clock selected

HSI16

HSI oscillator clock selected

MSI

MSI oscillator clock selected

HSE

HSE oscillator clock selected

PLL

PLL clock selected

LSI

LSI oscillator clock selected

LSE

LSE oscillator clock selected

Methods

impl MCOSELR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is NOCLOCK

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

Checks if the value of the field is SYSCLK

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

Checks if the value of the field is HSI16

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

Checks if the value of the field is MSI

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

Checks if the value of the field is HSE

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

Checks if the value of the field is PLL

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

Checks if the value of the field is LSI

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

Checks if the value of the field is LSE

Trait Implementations

impl PartialEq<MCOSELR> for MCOSELR[src]

impl Debug for MCOSELR[src]

impl Copy for MCOSELR[src]

impl Clone for MCOSELR[src]

Auto Trait Implementations

impl Unpin for MCOSELR

impl Send for MCOSELR

impl Sync for MCOSELR

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