pub trait AppendError: Error {
// Required method
fn is_conflict_error(&self) -> bool;
}Expand description
Error type returned by append in EventStore implementations.
Required Methods§
Sourcefn is_conflict_error(&self) -> bool
fn is_conflict_error(&self) -> bool
Returns true if the error is due to a version conflict
during append.