Struct failure::Compat [−][src]
pub struct Compat<E> { /* fields omitted */ }
A compatibility wrapper around an error type from this crate.
Compat
implements std::error::Error
, allowing the types from this
crate to be passed to interfaces that expect a type of that trait.
Implementations
impl<E> Compat<E>
[src]
impl<E> Compat<E>
[src]pub fn into_inner(self) -> E
[src]
Unwraps this into the inner error.
pub fn get_ref(&self) -> &E
[src]
Gets a reference to the inner error.
Trait Implementations
impl<E: Copy> Copy for Compat<E>
[src]
impl<E: Eq> Eq for Compat<E>
[src]
impl<E> StructuralEq for Compat<E>
[src]
impl<E> StructuralPartialEq for Compat<E>
[src]
Auto Trait Implementations
impl<E> RefUnwindSafe for Compat<E> where
E: RefUnwindSafe,
E: RefUnwindSafe,
impl<E> Send for Compat<E> where
E: Send,
E: Send,
impl<E> Sync for Compat<E> where
E: Sync,
E: Sync,
impl<E> Unpin for Compat<E> where
E: Unpin,
E: Unpin,
impl<E> UnwindSafe for Compat<E> where
E: UnwindSafe,
E: UnwindSafe,