[][src]Enum nrf52840_hal::target::pwm0::prescaler::PRESCALERR

pub enum PRESCALERR {
    DIV_1,
    DIV_2,
    DIV_4,
    DIV_8,
    DIV_16,
    DIV_32,
    DIV_64,
    DIV_128,
}

Possible values of the field PRESCALER

Variants

DIV_1

Divide by 1 (16 MHz)

DIV_2

Divide by 2 (8 MHz)

DIV_4

Divide by 4 (4 MHz)

DIV_8

Divide by 8 (2 MHz)

DIV_16

Divide by 16 (1 MHz)

DIV_32

Divide by 32 (500 kHz)

DIV_64

Divide by 64 (250 kHz)

DIV_128

Divide by 128 (125 kHz)

Methods

impl PRESCALERR[src]

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

Value of the field as raw bits

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

Checks if the value of the field is DIV_1

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

Checks if the value of the field is DIV_2

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

Checks if the value of the field is DIV_4

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

Checks if the value of the field is DIV_8

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

Checks if the value of the field is DIV_16

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

Checks if the value of the field is DIV_32

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

Checks if the value of the field is DIV_64

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

Checks if the value of the field is DIV_128

Trait Implementations

impl PartialEq<PRESCALERR> for PRESCALERR[src]

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

This method tests for !=.

impl Clone for PRESCALERR[src]

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

Performs copy-assignment from source. Read more

impl Copy for PRESCALERR[src]

impl Debug for PRESCALERR[src]

Auto Trait Implementations

impl Send for PRESCALERR

impl Sync for PRESCALERR

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

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

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