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.