AnyError

Trait AnyError 

Source
pub trait AnyError:
    Error
    + Send
    + Sync
    + 'static { }
Expand description

A type that implements Error and is threadsafe.

Implementors§

Source§

impl<T> AnyError for T
where T: Error + Send + Sync + 'static,