pub enum TxError {
UnknownAttribute(EntityId),
TypeMismatch(EntityId),
LookupNotFound,
LookupNotUnique,
UniqueConflict,
CasFailed,
CasCardinality,
}Expand description
Transaction validation error.
Variants§
UnknownAttribute(EntityId)
Attribute is absent from schema.
TypeMismatch(EntityId)
Value does not match attribute type.
LookupNotFound
A lookup ref did not resolve.
LookupNotUnique
Lookup refs require unique attributes.
UniqueConflict
A uniqueness constraint would be violated.
CasFailed
CAS old value did not match.
CasCardinality
CAS is only valid for cardinality one.
Trait Implementations§
impl Eq for TxError
Source§impl Error for TxError
impl Error for TxError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
impl StructuralPartialEq for TxError
Auto Trait Implementations§
impl Freeze for TxError
impl RefUnwindSafe for TxError
impl Send for TxError
impl Sync for TxError
impl Unpin for TxError
impl UnsafeUnpin for TxError
impl UnwindSafe for TxError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more