[][src]Enum stm32l0xx_hal::pac::rcc::cfgr::PLLMULR

pub enum PLLMULR {
    MUL3,
    MUL4,
    MUL6,
    MUL8,
    MUL12,
    MUL16,
    MUL24,
    MUL32,
    MUL48,
    _Reserved(u8),
}

Possible values of the field PLLMUL

Variants

MUL3

PLL clock entry x 3

MUL4

PLL clock entry x 4

MUL6

PLL clock entry x 6

MUL8

PLL clock entry x 8

MUL12

PLL clock entry x 12

MUL16

PLL clock entry x 16

MUL24

PLL clock entry x 24

MUL32

PLL clock entry x 32

MUL48

PLL clock entry x 48

_Reserved(u8)

Reserved

Methods

impl PLLMULR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is MUL3

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

Checks if the value of the field is MUL4

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

Checks if the value of the field is MUL6

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

Checks if the value of the field is MUL8

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

Checks if the value of the field is MUL12

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

Checks if the value of the field is MUL16

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

Checks if the value of the field is MUL24

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

Checks if the value of the field is MUL32

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

Checks if the value of the field is MUL48

Trait Implementations

impl PartialEq<PLLMULR> for PLLMULR[src]

impl Debug for PLLMULR[src]

impl Copy for PLLMULR[src]

impl Clone for PLLMULR[src]

Auto Trait Implementations

impl Unpin for PLLMULR

impl Send for PLLMULR

impl Sync for PLLMULR

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