pub struct ChangedEntry {
pub type_name: TypeName,
pub key: Key,
pub changes: Vec<FieldChange>,
}Expand description
an object present in both intent and backend, but with diverging fields.
Fields§
§type_name: TypeNameobject type.
key: Keyhuman key identifying the object.
changes: Vec<FieldChange>per-field divergences (field, observed from, desired to).
Trait Implementations§
Source§impl Clone for ChangedEntry
impl Clone for ChangedEntry
Source§fn clone(&self) -> ChangedEntry
fn clone(&self) -> ChangedEntry
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 ChangedEntry
impl Debug for ChangedEntry
Source§impl PartialEq for ChangedEntry
impl PartialEq for ChangedEntry
Source§fn eq(&self, other: &ChangedEntry) -> bool
fn eq(&self, other: &ChangedEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChangedEntry
impl Serialize for ChangedEntry
impl StructuralPartialEq for ChangedEntry
Auto Trait Implementations§
impl Freeze for ChangedEntry
impl RefUnwindSafe for ChangedEntry
impl Send for ChangedEntry
impl Sync for ChangedEntry
impl Unpin for ChangedEntry
impl UnsafeUnpin for ChangedEntry
impl UnwindSafe for ChangedEntry
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