pub trait Location:
Debug
+ Send
+ Sync
+ 'static {
// Required method
fn fmt_error(&self, f: &mut Formatter<'_>, error: &dyn Fail) -> Result;
}
Expand description
Location that an Error
can occur
Location that an Error
can occur