Trait AppError

Source
pub trait AppError:
    Debug
    + Error
    + Send
    + Sync
    + Unpin
    + 'static { }
Expand description

Bounds that the application error type must satisfy.

Implementors§

Source§

impl<T> AppError for T
where T: Debug + Error + Send + Sync + Unpin + 'static,