pub trait ErrorDetail:
Display
+ Debug
+ Send
+ Sync {
// Provided method
fn context(&self) -> Vec<(Option<String>, String)> { ... }
}Provided Methods§
Trait Implementations§
Source§impl From<&dyn ErrorDetail> for MakeshiftError
impl From<&dyn ErrorDetail> for MakeshiftError
Source§fn from(detail: &dyn ErrorDetail) -> Self
fn from(detail: &dyn ErrorDetail) -> Self
Converts to this type from the input type.