pub trait TryInto {
    fn application_error(&self) -> Option<Error>;
}
Expand description

Conversion trait for errors that have an associated Error

Required methods

Returns the associated Error, if any

Implementors