pub enum MutationError {
IndexError {
path: Vec<Cow<'static, str>>,
},
OperationError {
path: Vec<Cow<'static, str>>,
},
}Expand description
Error types for mutation operations.
Variants§
IndexError
The specified path does not exist.
OperationError
Mutation could not be performed at the specified path.
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 · 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
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 PartialEq for MutationError
impl PartialEq for MutationError
impl Eq 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 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