Skip to main content

StageError

Trait StageError 

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

Marker trait for error types that stages can produce. Blanket- implemented for every T: Debug + Display + Send + Sync + 'static, which includes every std::error::Error implementor.

Implementors§

Source§

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