pub enum DurableIncarnationReferencesError {
ReferenceCountExceedsBound {
actual: usize,
maximum: usize,
},
}Expand description
Error constructing a bounded complete durable-reference collection.
Variants§
ReferenceCountExceedsBound
The supplied complete reference collection exceeds its configured bound.
Trait Implementations§
Source§impl Clone for DurableIncarnationReferencesError
impl Clone for DurableIncarnationReferencesError
Source§fn clone(&self) -> DurableIncarnationReferencesError
fn clone(&self) -> DurableIncarnationReferencesError
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 DurableIncarnationReferencesError
impl Eq for DurableIncarnationReferencesError
impl StructuralPartialEq for DurableIncarnationReferencesError
Auto Trait Implementations§
impl Freeze for DurableIncarnationReferencesError
impl RefUnwindSafe for DurableIncarnationReferencesError
impl Send for DurableIncarnationReferencesError
impl Sync for DurableIncarnationReferencesError
impl Unpin for DurableIncarnationReferencesError
impl UnsafeUnpin for DurableIncarnationReferencesError
impl UnwindSafe for DurableIncarnationReferencesError
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