lib

Trait ThreadSafeErr

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

A ThreadSafeError has a static lifetime and is safe to be shared across threads.

Implementors§

Source§

impl<E: Error + Sync + Send + 'static> ThreadSafeErr for E