Enum weedle::Context[][src]

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

Variants

Methods

impl<I, E> Context<I, 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, F, E> Convert<Context<I, F>> for Context<I, E> where
    E: From<F>, 
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

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