pub enum DiffPatchError {
IncompatibleTypes(String, String),
DifferentAttributeKeys,
NonExistentProperty(String),
IncorrectPropertyValue(String),
}
Variants§
IncompatibleTypes(String, String)
DifferentAttributeKeys
NonExistentProperty(String)
IncorrectPropertyValue(String)
Trait Implementations§
Source§impl Clone for DiffPatchError
impl Clone for DiffPatchError
Source§fn clone(&self) -> DiffPatchError
fn clone(&self) -> DiffPatchError
Returns a copy 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 DiffPatchError
impl Debug for DiffPatchError
Source§impl PartialEq for DiffPatchError
impl PartialEq for DiffPatchError
impl StructuralPartialEq for DiffPatchError
Auto Trait Implementations§
impl Freeze for DiffPatchError
impl RefUnwindSafe for DiffPatchError
impl Send for DiffPatchError
impl Sync for DiffPatchError
impl Unpin for DiffPatchError
impl UnwindSafe for DiffPatchError
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