pub enum MutationError {
EmptyKey,
KeyTooLarge {
length: usize,
maximum: usize,
},
OperationTooLarge {
length: usize,
maximum: usize,
},
Malformed,
UnknownKind {
kind: u8,
},
}Expand description
Failure while validating or decoding a persisted mutation.
Variants§
EmptyKey
Empty keys are forbidden.
KeyTooLarge
A key exceeds the stable storage limit.
OperationTooLarge
The full encoded operation exceeds one log frame.
Malformed
Persisted bytes do not form one canonical mutation.
UnknownKind
The mutation kind is not defined by this disk format.
Trait Implementations§
Source§impl Clone for MutationError
impl Clone for MutationError
Source§fn clone(&self) -> MutationError
fn clone(&self) -> MutationError
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 MutationError
impl Debug for MutationError
Source§impl Display for MutationError
impl Display for MutationError
impl Eq for MutationError
Source§impl Error for MutationError
impl Error for MutationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<MutationError> for StorageError
impl From<MutationError> for StorageError
Source§fn from(source: MutationError) -> Self
fn from(source: MutationError) -> Self
Converts to this type from the input type.
Source§impl From<MutationError> for MaterializedIndexError
impl From<MutationError> for MaterializedIndexError
Source§fn from(source: MutationError) -> Self
fn from(source: MutationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MutationError
impl PartialEq for MutationError
impl StructuralPartialEq for MutationError
Auto Trait Implementations§
impl Freeze for MutationError
impl RefUnwindSafe for MutationError
impl Send for MutationError
impl Sync for MutationError
impl Unpin for MutationError
impl UnsafeUnpin for MutationError
impl UnwindSafe for MutationError
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