pub trait ErrorType {
    type Error: Debug;
}

Required Associated Types§

source

type Error: Debug

Implementations on Foreign Types§

source§

impl<E> ErrorType for &E
where E: ErrorType,

§

type Error = <E as ErrorType>::Error

source§

impl<E> ErrorType for &mut E
where E: ErrorType,

§

type Error = <E as ErrorType>::Error

Implementors§