[][src]Struct gluon_base::error::Help

pub struct Help<E, H> {
    pub error: E,
    pub help: Option<H>,
}

Fields

error: Ehelp: Option<H>

Trait Implementations

impl<E, H> AsDiagnostic for Help<E, H> where
    E: AsDiagnostic,
    H: Display
[src]

impl<E: Clone, H: Clone> Clone for Help<E, H>[src]

impl<E: Debug, H: Debug> Debug for Help<E, H>[src]

impl<E, H> Display for Help<E, H> where
    E: Display,
    H: Display
[src]

impl<E: Eq, H: Eq> Eq for Help<E, H>[src]

impl<E, H> From<E> for Help<E, H>[src]

impl<E: Hash, H: Hash> Hash for Help<E, H>[src]

impl<E: PartialEq, H: PartialEq> PartialEq<Help<E, H>> for Help<E, H>[src]

impl<E, H> StructuralEq for Help<E, H>[src]

impl<E, H> StructuralPartialEq for Help<E, H>[src]

Auto Trait Implementations

impl<E, H> RefUnwindSafe for Help<E, H> where
    E: RefUnwindSafe,
    H: RefUnwindSafe

impl<E, H> Send for Help<E, H> where
    E: Send,
    H: Send

impl<E, H> Sync for Help<E, H> where
    E: Sync,
    H: Sync

impl<E, H> Unpin for Help<E, H> where
    E: Unpin,
    H: Unpin

impl<E, H> UnwindSafe for Help<E, H> where
    E: UnwindSafe,
    H: UnwindSafe

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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<!> for T[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> ToString for T where
    T: Display + ?Sized
[src]

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.