Trait ErrorHandler

Source
pub trait ErrorHandler<ErrorType>:
    FnMut(ErrorType)
    + Send
    + 'static { }

Implementors§

Source§

impl<T, ErrorType> ErrorHandler<ErrorType> for T
where T: FnMut(ErrorType) + Send + 'static,