pub struct SyncPacket {
pub status: SyncStatus,
pub diff: SyncDiff,
pub compare: Option<SyncCompare>,
}Expand description
Combined sync status, diff and comparisons.
Fields§
§status: SyncStatusSync status.
diff: SyncDiffSync diff.
compare: Option<SyncCompare>Sync comparisons.
Trait Implementations§
Source§impl Clone for SyncPacket
impl Clone for SyncPacket
Source§fn clone(&self) -> SyncPacket
fn clone(&self) -> SyncPacket
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyncPacket
impl Debug for SyncPacket
Source§impl Default for SyncPacket
impl Default for SyncPacket
Source§fn default() -> SyncPacket
fn default() -> SyncPacket
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncPacket
impl PartialEq for SyncPacket
impl Eq for SyncPacket
impl StructuralPartialEq for SyncPacket
Auto Trait Implementations§
impl Freeze for SyncPacket
impl RefUnwindSafe for SyncPacket
impl Send for SyncPacket
impl Sync for SyncPacket
impl Unpin for SyncPacket
impl UnwindSafe for SyncPacket
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.