[][src]Enum cron_clock::Context

pub enum Context<I, E = u32> {
    Code(I, ErrorKind<E>),
}

Variants

Code(I, ErrorKind<E>)

Implementations

impl<I, E> Context<I, E>[src]

pub fn into_error_kind(self) -> ErrorKind<E>[src]

Convert Err into ErrorKind.

This allows application code to use ErrorKind and stay independent from the verbose-errors features activation.

Trait Implementations

impl<I, E> Clone for Context<I, E> where
    E: Clone,
    I: Clone
[src]

impl<I, F, E> Convert<Context<I, F>> for Context<I, E> where
    E: From<F>, 
[src]

impl<I, E> Debug for Context<I, E> where
    E: Debug,
    I: Debug
[src]

impl<I, E> PartialEq<Context<I, E>> for Context<I, E> where
    E: PartialEq<E>,
    I: PartialEq<I>, 
[src]

impl<I, E> StructuralPartialEq for Context<I, E>[src]

Auto Trait Implementations

impl<I, E> RefUnwindSafe for Context<I, E> where
    E: RefUnwindSafe,
    I: RefUnwindSafe

impl<I, E> Send for Context<I, E> where
    E: Send,
    I: Send

impl<I, E> Sync for Context<I, E> where
    E: Sync,
    I: Sync

impl<I, E> Unpin for Context<I, E> where
    E: Unpin,
    I: Unpin

impl<I, E> UnwindSafe for Context<I, E> where
    E: UnwindSafe,
    I: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.