pub trait ErrorConvert<E> {
fn convert(self) -> E;
}
Available on crate feature
mtls
only.Expand description
Equivalent From implementation to avoid orphan rules in bits parsers
Required Methods
fn convert(self) -> E
fn convert(self) -> E
Transform to another error type