pub struct EntityPropertyChange {
pub field: String,
pub old_value: Option<Value>,
pub new_value: Option<Value>,
}Fields§
§field: String§old_value: Option<Value>§new_value: Option<Value>Implementations§
Trait Implementations§
Source§impl Clone for EntityPropertyChange
impl Clone for EntityPropertyChange
Source§fn clone(&self) -> EntityPropertyChange
fn clone(&self) -> EntityPropertyChange
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 EntityPropertyChange
impl Debug for EntityPropertyChange
Source§impl PartialEq for EntityPropertyChange
impl PartialEq for EntityPropertyChange
Source§fn eq(&self, other: &EntityPropertyChange) -> bool
fn eq(&self, other: &EntityPropertyChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EntityPropertyChange
Auto Trait Implementations§
impl Freeze for EntityPropertyChange
impl RefUnwindSafe for EntityPropertyChange
impl Send for EntityPropertyChange
impl Sync for EntityPropertyChange
impl Unpin for EntityPropertyChange
impl UnsafeUnpin for EntityPropertyChange
impl UnwindSafe for EntityPropertyChange
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