[][src]Enum imxrt1062_hal::ccm::TicksError

pub enum TicksError {
    DurationOverflow,
    TicksOverflow,
    DivideByZero,
}

Possible errors that could result during a computation of ticks

Variants

DurationOverflow

The duration cannot be expressed in a u64.

TicksOverflow

The number of ticks cannot be expressed in a u32

DivideByZero

Computation would divide by zero

Trait Implementations

impl Clone for TicksError[src]

impl Copy for TicksError[src]

impl Debug for TicksError[src]

impl Eq for TicksError[src]

impl PartialEq<TicksError> for TicksError[src]

impl StructuralEq for TicksError[src]

impl StructuralPartialEq for TicksError[src]

Auto Trait Implementations

impl Send for TicksError

impl Sync for TicksError

impl Unpin for TicksError

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.