pub type BoxError = Box<dyn StdError + Send + Sync + 'static>;
A generic, boxed error that’s Send, Sync, and 'static.
Send
Sync
'static
struct BoxError(/* private fields */);