Enum eventsourced::EntityRefError
source · Expand description
Errors from an EntityRef.
Variants§
SendCmd(Box<dyn StdError + Send + Sync>)
A command cannot be sent from an EntityRef to its entity.
RcvHandlerResult(RecvError)
An EntityRef cannot receive the command handler result from its entity, potentially because its entity has terminated.
Trait Implementations§
source§impl Debug for EntityRefError
impl Debug for EntityRefError
source§impl Display for EntityRefError
impl Display for EntityRefError
source§impl Error for EntityRefError
impl Error for EntityRefError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()