pub struct PendingChanges {
pub added: u32,
pub modified: u32,
pub removed: u32,
}Fields§
§added: u32§modified: u32§removed: u32Trait Implementations§
Source§impl Clone for PendingChanges
impl Clone for PendingChanges
Source§fn clone(&self) -> PendingChanges
fn clone(&self) -> PendingChanges
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 PendingChanges
impl Debug for PendingChanges
Source§impl<'de> Deserialize<'de> for PendingChanges
impl<'de> Deserialize<'de> for PendingChanges
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PendingChanges
impl PartialEq for PendingChanges
Source§fn eq(&self, other: &PendingChanges) -> bool
fn eq(&self, other: &PendingChanges) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PendingChanges
impl Serialize for PendingChanges
impl StructuralPartialEq for PendingChanges
Auto Trait Implementations§
impl Freeze for PendingChanges
impl RefUnwindSafe for PendingChanges
impl Send for PendingChanges
impl Sync for PendingChanges
impl Unpin for PendingChanges
impl UnsafeUnpin for PendingChanges
impl UnwindSafe for PendingChanges
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