#[repr(u16)]
pub enum Prescaler { Prescaler1 = 0, Prescaler2 = 1, Prescaler4 = 2, Prescaler8 = 3, Prescaler16 = 4, Prescaler32 = 5, Prescaler64 = 6, Prescaler128 = 7, }
Expand description

PWM clock prescaler.

Affects all timing, except for the glitch filters.

Variants§

§

Prescaler1 = 0

Divide the PWM clock by 1.

§

Prescaler2 = 1

Divide the PWM clock by 2.

§

Prescaler4 = 2

Divide the PWM clock by 4.

§

Prescaler8 = 3

Divide the PWM clock by 8.

§

Prescaler16 = 4

Divide the PWM clock by 16.

§

Prescaler32 = 5

Divide the PWM clock by 32.

§

Prescaler64 = 6

Divide the PWM clock by 64.

§

Prescaler128 = 7

Divide the PWM clock by 128.

Implementations§

source§

impl Prescaler

source

pub const fn divider(self) -> u32

Returns the prescalar value as a divisor.

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 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 T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.