Struct Context
quick_error
pub struct Context<X, E>(pub X, pub E);
Generic context type
Used mostly as a transport for ResultExt::context method
ResultExt::context
impl<X: Debug, E: Debug> Debug for Context<X, E>
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<X, E> Send for Context<X, E> where E: Send, X: Send,
impl<X, E> Sync for Context<X, E> where E: Sync, X: Sync,