pub type BoxError = Box<dyn Error + Send + Sync>;
A reducer error erased to a trait object โ the uniform reducer-error type the Store surface exposes across reducers.
Store
pub struct BoxError(/* private fields */);