pub enum ValueChange {
Added(Value),
Modified {
old: Value,
new: Value,
},
Removed(Value),
}Variants§
Trait Implementations§
Source§impl Clone for ValueChange
impl Clone for ValueChange
Source§fn clone(&self) -> ValueChange
fn clone(&self) -> ValueChange
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 ValueChange
impl Debug for ValueChange
Source§impl PartialEq for ValueChange
impl PartialEq for ValueChange
impl StructuralPartialEq for ValueChange
Auto Trait Implementations§
impl Freeze for ValueChange
impl RefUnwindSafe for ValueChange
impl Send for ValueChange
impl Sync for ValueChange
impl Unpin for ValueChange
impl UnwindSafe for ValueChange
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