[−][src]Struct failure::Context
An error with context around it.
The context is intended to be a human-readable, user-facing explanation for the error that has occurred. The underlying error is not assumed to be end-user-relevant information.
The Display
impl for Context
only prints the human-readable context, while the
Debug
impl also prints the underlying error.
Implementations
impl<D: Display + Send + Sync + 'static> Context<D>
[src]
pub fn new(context: D) -> Context<D>
[src]
Creates a new context without an underlying error message.
pub fn get_context(&self) -> &D
[src]
Returns a reference to the context provided with this error.
pub fn map<F, T>(self, op: F) -> Context<T> where
F: FnOnce(D) -> T,
T: Display + Send + Sync + 'static,
[src]
F: FnOnce(D) -> T,
T: Display + Send + Sync + 'static,
Maps Context<D>
to Context<T>
by applying a function to the contained context.
Trait Implementations
impl<D: Display + Send + Sync + 'static> Debug for Context<D>
[src]
impl<D: Display + Send + Sync + 'static> Display for Context<D>
[src]
impl<D: Display + Send + Sync + 'static> Fail for Context<D>
[src]
fn name(&self) -> Option<&str>
[src]
fn cause(&self) -> Option<&dyn Fail>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Self: Sized,
[src]
D: Display + Send + Sync + 'static,
Self: Sized,
fn compat(self) -> Compat<Self> where
Self: Sized,
[src]
Self: Sized,
impl<D> From<D> for Context<D> where
D: Display + Send + Sync + 'static,
[src]
D: Display + Send + Sync + 'static,
Auto Trait Implementations
impl<D> !RefUnwindSafe for Context<D>
impl<D> Send for Context<D>
impl<D> Sync for Context<D>
impl<D> Unpin for Context<D> where
D: Unpin,
D: Unpin,
impl<D> !UnwindSafe for Context<D>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<E> Fail for E where
E: 'static + Error + Send + Sync,
[src]
E: 'static + Error + Send + Sync,
fn name(&self) -> Option<&str>
[src]
fn cause(&self) -> Option<&dyn Fail>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Self: Sized,
[src]
D: Display + Send + Sync + 'static,
Self: Sized,
fn compat(self) -> Compat<Self> where
Self: Sized,
[src]
Self: Sized,
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]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,