[]Enum nucleo_f042k6::stm32::rcc::cfgr::HPRER

pub enum HPRER {
    NOTDIVIDED,
    DIV_2,
    DIV_4,
    DIV_8,
    DIV_16,
    DIV_64,
    DIV_128,
    DIV_256,
    DIV_512,
    _Reserved(u8),
}

Possible values of the field HPRE

Variants

NOTDIVIDED

SYSCLK not divided

DIV_2

SYSCLK divided by 2

DIV_4

SYSCLK divided by 4

DIV_8

SYSCLK divided by 8

DIV_16

SYSCLK divided by 16

DIV_64

SYSCLK divided by 64

DIV_128

SYSCLK divided by 128

DIV_256

SYSCLK divided by 256

DIV_512

SYSCLK divided by 512

_Reserved(u8)

Reserved

Methods

impl HPRER

pub fn bits(&self) -> u8

Value of the field as raw bits

pub fn is_not_divided(&self) -> bool

Checks if the value of the field is NOTDIVIDED

pub fn is_div_2(&self) -> bool

Checks if the value of the field is DIV_2

pub fn is_div_4(&self) -> bool

Checks if the value of the field is DIV_4

pub fn is_div_8(&self) -> bool

Checks if the value of the field is DIV_8

pub fn is_div_16(&self) -> bool

Checks if the value of the field is DIV_16

pub fn is_div_64(&self) -> bool

Checks if the value of the field is DIV_64

pub fn is_div_128(&self) -> bool

Checks if the value of the field is DIV_128

pub fn is_div_256(&self) -> bool

Checks if the value of the field is DIV_256

pub fn is_div_512(&self) -> bool

Checks if the value of the field is DIV_512

Trait Implementations

impl PartialEq<HPRER> for HPRER

impl Clone for HPRER

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

Performs copy-assignment from source. Read more

impl Copy for HPRER

impl Debug for HPRER

Auto Trait Implementations

impl Send for HPRER

impl Sync for HPRER

Blanket Implementations

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

type Error = !

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

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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]