pub type BoxError = Box<dyn Error + Send + Sync + 'static>;
A type alias for a boxed Error type that is Send, Sync, and 'static.
Send
Sync
'static
struct BoxError(/* private fields */);