pub trait ErrorValueExt { // Required method fn as_error(&self) -> &(dyn Error + 'static); }
Extension trait to make it easy to trace errors.
Returns the error as a type that can be traced.