pub trait IntoErrorIterator {
// Required method
fn error_chain(&self) -> ErrorIterator<'_> ⓘ;
// Provided method
fn serializable_copy(&self) -> SerializableError { ... }
}
Required Methods§
Sourcefn error_chain(&self) -> ErrorIterator<'_> ⓘ
fn error_chain(&self) -> ErrorIterator<'_> ⓘ
Creates an iterator over Error::source
s
Provided Methods§
Sourcefn serializable_copy(&self) -> SerializableError
fn serializable_copy(&self) -> SerializableError
Copies and flattens the error stack into a SerializableError