#[repr(u8)]
pub enum Prescaler { Div1 = 0, Div2 = 1, Div4 = 2, Div8 = 3, Div16 = 4, Div32 = 5, Div64 = 6, Div128 = 7, }
Expand description

Timer clock prescaler.

Variants§

§

Div1 = 0

/1

§

Div2 = 1

/2

§

Div4 = 2

/4

§

Div8 = 3

/8

§

Div16 = 4

/16

§

Div32 = 5

/32

§

Div64 = 6

/64

§

Div128 = 7

/128

Implementations§

source§

impl Prescaler

source

pub const fn div(&self) -> u8

Get the prescaler divisor.

Example
use stm32wlxx_hal::lptim::Prescaler;

assert_eq!(Prescaler::Div1.div(), 1);
assert_eq!(Prescaler::Div2.div(), 2);
assert_eq!(Prescaler::Div4.div(), 4);
assert_eq!(Prescaler::Div8.div(), 8);
assert_eq!(Prescaler::Div16.div(), 16);
assert_eq!(Prescaler::Div32.div(), 32);
assert_eq!(Prescaler::Div64.div(), 64);
assert_eq!(Prescaler::Div128.div(), 128);

Trait Implementations§

source§

impl Clone for Prescaler

source§

fn clone(&self) -> Prescaler

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Prescaler

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Prescaler

source§

fn default() -> Self

Reset value of the prescaler.

source§

impl PartialEq for Prescaler

source§

fn eq(&self, other: &Prescaler) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Prescaler

source§

impl Eq for Prescaler

source§

impl StructuralEq for Prescaler

source§

impl StructuralPartialEq for Prescaler

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.