pub enum CursorFactEncodeError {
TooManyParticipants,
TooManyFacts,
LengthOverflow,
}Expand description
Deterministic cursor-fact serialization failure.
Variants§
TooManyParticipants
Participant count cannot fit the variable format’s u32 count.
TooManyFacts
Fact count cannot fit the variable format’s u32 count.
LengthOverflow
Encoded byte length overflowed the platform allocation domain.
Trait Implementations§
Source§impl Clone for CursorFactEncodeError
impl Clone for CursorFactEncodeError
Source§fn clone(&self) -> CursorFactEncodeError
fn clone(&self) -> CursorFactEncodeError
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 CursorFactEncodeError
Source§impl Debug for CursorFactEncodeError
impl Debug for CursorFactEncodeError
impl Eq for CursorFactEncodeError
Source§impl PartialEq for CursorFactEncodeError
impl PartialEq for CursorFactEncodeError
impl StructuralPartialEq for CursorFactEncodeError
Auto Trait Implementations§
impl Freeze for CursorFactEncodeError
impl RefUnwindSafe for CursorFactEncodeError
impl Send for CursorFactEncodeError
impl Sync for CursorFactEncodeError
impl Unpin for CursorFactEncodeError
impl UnsafeUnpin for CursorFactEncodeError
impl UnwindSafe for CursorFactEncodeError
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