[][src]Struct imxrt1062_hal::ccm::Ticks

pub struct Ticks<R: TicksRepr>(_);

An opaque duration representing the number of clock ticks

See the ticks function to derive a Ticks value.

Trait Implementations

impl Add<Ticks<u32>> for Ticks<u32>[src]

type Output = Self

The resulting type after applying the + operator.

impl<R: Clone + TicksRepr> Clone for Ticks<R>[src]

impl<R: Copy + TicksRepr> Copy for Ticks<R>[src]

impl Div<Divider> for Ticks<u32>[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<Ticks<u32>> for Ticks<u32>[src]

type Output = Self

The resulting type after applying the / operator.

impl<R: Eq + TicksRepr> Eq for Ticks<R>[src]

impl From<Frequency> for Ticks<u32>[src]

impl<R: Ord + TicksRepr> Ord for Ticks<R>[src]

impl<R: PartialEq + TicksRepr> PartialEq<Ticks<R>> for Ticks<R>[src]

impl<R: PartialOrd + TicksRepr> PartialOrd<Ticks<R>> for Ticks<R>[src]

impl<R: TicksRepr> StructuralEq for Ticks<R>[src]

impl<R: TicksRepr> StructuralPartialEq for Ticks<R>[src]

impl Sub<Ticks<u32>> for Ticks<u32>[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

impl<R> Send for Ticks<R> where
    R: Send

impl<R> Sync for Ticks<R> where
    R: Sync

impl<R> Unpin for Ticks<R> where
    R: Unpin

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.