pub enum ConnectionIncarnationAllocatorRestoreError {
OrdinalExhaustionMismatch {
last_examined_connection_ordinal: Option<u64>,
connection_ordinal_exhausted: bool,
},
}Expand description
Invalid durable connection-incarnation allocator header.
Variants§
OrdinalExhaustionMismatch
The exhaustion bit and terminal examined ordinal disagree.
Trait Implementations§
Source§impl Clone for ConnectionIncarnationAllocatorRestoreError
impl Clone for ConnectionIncarnationAllocatorRestoreError
Source§fn clone(&self) -> ConnectionIncarnationAllocatorRestoreError
fn clone(&self) -> ConnectionIncarnationAllocatorRestoreError
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 Copy for ConnectionIncarnationAllocatorRestoreError
impl Eq for ConnectionIncarnationAllocatorRestoreError
impl StructuralPartialEq for ConnectionIncarnationAllocatorRestoreError
Auto Trait Implementations§
impl Freeze for ConnectionIncarnationAllocatorRestoreError
impl RefUnwindSafe for ConnectionIncarnationAllocatorRestoreError
impl Send for ConnectionIncarnationAllocatorRestoreError
impl Sync for ConnectionIncarnationAllocatorRestoreError
impl Unpin for ConnectionIncarnationAllocatorRestoreError
impl UnsafeUnpin for ConnectionIncarnationAllocatorRestoreError
impl UnwindSafe for ConnectionIncarnationAllocatorRestoreError
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