[][src]Enum stm32f3::stm32f3x8::rcc::cfgr::PLLSRCR

pub enum PLLSRCR {
    HSI_DIV2,
    HSI_DIV_PREDIV,
    HSE_DIV_PREDIV,
    _Reserved(u8),
}

Possible values of the field PLLSRC

Variants

HSI_DIV2

HSI divided by 2 selected as PLL input clock

HSI_DIV_PREDIV

HSI divided by PREDIV selected as PLL input clock

HSE_DIV_PREDIV

HSE divided by PREDIV selected as PLL input clock

_Reserved(u8)

Reserved

Methods

impl PLLSRCR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is HSI_DIV2

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

Checks if the value of the field is HSI_DIV_PREDIV

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

Checks if the value of the field is HSE_DIV_PREDIV

Trait Implementations

impl Debug for PLLSRCR[src]

impl PartialEq<PLLSRCR> for PLLSRCR[src]

impl Copy for PLLSRCR[src]

impl Clone for PLLSRCR[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for PLLSRCR

impl Sync for PLLSRCR

impl Send for PLLSRCR

Blanket Implementations

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> From<T> for 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