[−][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.
Methods
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> 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,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self> where
Self: Sized,
[src]
Self: Sized,
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
impl<D> From<D> for Context<D> where
D: Display + Send + Sync + 'static,
[src]
D: Display + Send + Sync + 'static,
impl<D: Display + Send + Sync + 'static> Debug for Context<D>
[src]
impl<D: Display + Send + Sync + 'static> Display for Context<D>
[src]
Auto Trait Implementations
Blanket Implementations
impl<E> Fail for E where
E: 'static + Error + Send + Sync,
[src]
E: 'static + Error + Send + Sync,
fn name(&self) -> Option<&str>
[src]
Returns the "name" of the error. Read more
fn cause(&self) -> Option<&dyn Fail>
[src]
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
Self: Sized,
[src]
D: Display + Send + Sync + 'static,
Self: Sized,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self> where
Self: Sized,
[src]
Self: Sized,
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
impl<T> From for T
[src]
impl<T, U> Into 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 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> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,