Struct sos_protocol::MergeOutcome
source · pub struct MergeOutcome {
pub changes: u64,
pub identity: u64,
pub account: u64,
pub device: u64,
pub files: u64,
pub folders: HashMap<VaultId, u64>,
/* private fields */
}Expand description
Outcome of a merge operation.
Fields§
§changes: u64Total number of changes made during the merge.
identity: u64Number of changes to the identity folder.
account: u64Number of changes to the account event log.
device: u64Number of changes to the device event log.
files: u64Available on crate feature
files only.Number of changes to the file event log.
folders: HashMap<VaultId, u64>Number of changes to the folder event logs.
Trait Implementations§
source§impl Clone for MergeOutcome
impl Clone for MergeOutcome
source§fn clone(&self) -> MergeOutcome
fn clone(&self) -> MergeOutcome
Returns a copy of the value. Read more
1.0.0 · 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 MergeOutcome
impl Debug for MergeOutcome
source§impl Default for MergeOutcome
impl Default for MergeOutcome
source§fn default() -> MergeOutcome
fn default() -> MergeOutcome
Returns the “default value” for a type. Read more
source§impl PartialEq for MergeOutcome
impl PartialEq for MergeOutcome
source§fn eq(&self, other: &MergeOutcome) -> bool
fn eq(&self, other: &MergeOutcome) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for MergeOutcome
impl StructuralPartialEq for MergeOutcome
Auto Trait Implementations§
impl Freeze for MergeOutcome
impl RefUnwindSafe for MergeOutcome
impl Send for MergeOutcome
impl Sync for MergeOutcome
impl Unpin for MergeOutcome
impl UnwindSafe for MergeOutcome
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<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.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more