Skip to main content

CustomError

Trait CustomError 

Source
pub trait CustomError:
    Display
    + Debug
    + Send
    + Sync
    + 'static { }
Expand description

Custom error type that can be used in EMLErrorKind::Custom

Implementors§

Source§

impl<T> CustomError for T
where T: Display + Debug + Send + Sync + 'static,