pub trait TryInto {
// Required method
fn application_error(&self) -> Option<Error>;
}Expand description
Conversion trait for errors that have an associated Error
Required Methods§
Sourcefn application_error(&self) -> Option<Error>
fn application_error(&self) -> Option<Error>
Returns the associated Error, if any