pub trait ErrorConvert<E> {
    fn convert(self) -> E;
}
Expand description

Equivalent From implementation to avoid orphan rules in bits parsers

Required methods

Transform to another error type

Implementations on Foreign Types

Implementors