[][src]Struct trellis_m4::timer_params::TimerParams

pub struct TimerParams {
    pub divider: u16,
    pub cycles: u32,
}

Helper type for computing cycles and divider given frequency

Fields

divider: u16cycles: u32

Implementations

impl TimerParams[src]

pub fn new<T>(timeout: T, src_freq: u32) -> TimerParams where
    T: Into<Hertz>, 
[src]

calculates TimerParams from a given frequency based timeout.

pub fn new_us<T>(timeout: T, src_freq: u32) -> TimerParams where
    T: Into<Nanoseconds>, 
[src]

calculates TimerParams from a given period based timeout.

Trait Implementations

impl Clone for TimerParams[src]

impl Copy for TimerParams[src]

impl Debug for TimerParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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> 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.