Struct dogear::StructureCounts[][src]

pub struct StructureCounts {
    pub new: u64,
    pub remote_revives: u64,
    pub local_deletes: u64,
    pub local_revives: u64,
    pub remote_deletes: u64,
    pub dupes: u64,
}

Fields

Remote non-folder change wins over local deletion.

Local folder deletion wins over remote change.

Local non-folder change wins over remote deletion.

Remote folder deletion wins over local change.

Deduped local items.

Trait Implementations

impl Clone for StructureCounts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for StructureCounts
[src]

impl Default for StructureCounts
[src]

Returns the "default value" for a type. Read more

impl Debug for StructureCounts
[src]

Formats the value using the given formatter. Read more

impl Eq for StructureCounts
[src]

impl PartialEq for StructureCounts
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations