pub struct ChangedEntry {
pub kind: DiffKind,
pub identity: String,
pub expected: String,
pub actual: String,
}Expand description
A record that exists under the same identity in both sides but differs in attributes.
Fields§
§kind: DiffKind§identity: String§expected: String§actual: StringTrait 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
impl Eq for ChangedEntry
Source§impl PartialEq for ChangedEntry
impl PartialEq 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