pub struct FolderSummary {Show 34 fields
pub errors: i64,
pub global_files: i64,
pub global_directories: i64,
pub global_symlinks: i64,
pub global_deleted: i64,
pub global_bytes: i64,
pub global_total_items: i64,
pub local_files: i64,
pub local_directories: i64,
pub local_symlinks: i64,
pub local_deleted: i64,
pub local_bytes: i64,
pub local_total_items: i64,
pub need_files: i64,
pub need_directories: i64,
pub need_symlinks: i64,
pub need_deletes: i64,
pub need_bytes: i64,
pub need_total_items: i64,
pub receive_only_changed_files: i64,
pub receive_only_changed_directories: i64,
pub receive_only_changed_symlinks: i64,
pub receive_only_changed_deletes: i64,
pub receive_only_changed_bytes: i64,
pub receive_only_total_items: i64,
pub in_sync_files: i64,
pub in_sync_bytes: i64,
pub state: String,
pub state_changed: DateTime<Utc>,
pub error: String,
pub sequence: i64,
pub remote_sequence: HashMap<String, i64>,
pub ignore_patterns: bool,
pub watch_error: String,
}Fields§
§errors: i64§global_files: i64§global_directories: i64§global_symlinks: i64§global_deleted: i64§global_bytes: i64§global_total_items: i64§local_files: i64§local_directories: i64§local_symlinks: i64§local_deleted: i64§local_bytes: i64§local_total_items: i64§need_files: i64§need_directories: i64§need_symlinks: i64§need_deletes: i64§need_bytes: i64§need_total_items: i64§receive_only_changed_files: i64§receive_only_changed_directories: i64§receive_only_changed_symlinks: i64§receive_only_changed_deletes: i64§receive_only_changed_bytes: i64§receive_only_total_items: i64§in_sync_files: i64§in_sync_bytes: i64§state: String§state_changed: DateTime<Utc>§error: String§sequence: i64§remote_sequence: HashMap<String, i64>§ignore_patterns: bool§watch_error: StringTrait Implementations§
Source§impl Clone for FolderSummary
impl Clone for FolderSummary
Source§fn clone(&self) -> FolderSummary
fn clone(&self) -> FolderSummary
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FolderSummary
impl Debug for FolderSummary
Source§impl<'de> Deserialize<'de> for FolderSummary
impl<'de> Deserialize<'de> for FolderSummary
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 FolderSummary
impl PartialEq for FolderSummary
Source§impl Serialize for FolderSummary
impl Serialize for FolderSummary
impl Eq for FolderSummary
impl StructuralPartialEq for FolderSummary
Auto Trait Implementations§
impl Freeze for FolderSummary
impl RefUnwindSafe for FolderSummary
impl Send for FolderSummary
impl Sync for FolderSummary
impl Unpin for FolderSummary
impl UnwindSafe for FolderSummary
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.