pub enum ConversationStateRestoreError {
ClaimFrontier(ParticipantStateCorruptReason),
Storage(StorageRestoreError),
}Expand description
Failure while jointly restoring claim frontiers and their current closure edge.
Variants§
ClaimFrontier(ParticipantStateCorruptReason)
Numeric, causal, or cross-counter claim-frontier validation failed.
Storage(StorageRestoreError)
Raw lifecycle storage disagreed with its typed predecessor authority.
Trait Implementations§
Source§impl Clone for ConversationStateRestoreError
impl Clone for ConversationStateRestoreError
Source§fn clone(&self) -> ConversationStateRestoreError
fn clone(&self) -> ConversationStateRestoreError
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 moreimpl Eq for ConversationStateRestoreError
impl StructuralPartialEq for ConversationStateRestoreError
Auto Trait Implementations§
impl Freeze for ConversationStateRestoreError
impl RefUnwindSafe for ConversationStateRestoreError
impl Send for ConversationStateRestoreError
impl Sync for ConversationStateRestoreError
impl Unpin for ConversationStateRestoreError
impl UnsafeUnpin for ConversationStateRestoreError
impl UnwindSafe for ConversationStateRestoreError
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