pub enum SnapshotError {
DuplicateOperation(OperationAddress),
DuplicateDelivery(CompactString),
DuplicateQueue(OperationAddress),
DuplicateSequence(OperationAddress),
SequenceForUnknownOperation(OperationAddress),
DeliveryForUnknownOperation(CompactString),
UnknownQueuedDelivery(CompactString),
QueuedDeliveryForWrongReceiver(CompactString),
NonQueuedDelivery(CompactString),
DuplicateQueuedDelivery(CompactString),
OutOfOrderQueue(CompactString),
}Variants§
DuplicateOperation(OperationAddress)
DuplicateDelivery(CompactString)
DuplicateQueue(OperationAddress)
DuplicateSequence(OperationAddress)
SequenceForUnknownOperation(OperationAddress)
DeliveryForUnknownOperation(CompactString)
UnknownQueuedDelivery(CompactString)
QueuedDeliveryForWrongReceiver(CompactString)
NonQueuedDelivery(CompactString)
DuplicateQueuedDelivery(CompactString)
OutOfOrderQueue(CompactString)
Trait Implementations§
Source§impl Clone for SnapshotError
impl Clone for SnapshotError
Source§fn clone(&self) -> SnapshotError
fn clone(&self) -> SnapshotError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SnapshotError
impl Debug for SnapshotError
impl Eq for SnapshotError
Source§impl PartialEq for SnapshotError
impl PartialEq for SnapshotError
impl StructuralPartialEq for SnapshotError
Auto Trait Implementations§
impl Freeze for SnapshotError
impl RefUnwindSafe for SnapshotError
impl Send for SnapshotError
impl Sync for SnapshotError
impl Unpin for SnapshotError
impl UnsafeUnpin for SnapshotError
impl UnwindSafe for SnapshotError
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