[][src]Struct syncthing::rest::events::FolderSummaryData

pub struct FolderSummaryData {
    pub global_bytes: u64,
    pub global_deleted: u64,
    pub global_directories: u64,
    pub global_files: u64,
    pub global_symlinks: u64,
    pub global_total_items: u64,
    pub ignore_patterns: bool,
    pub in_sync_bytes: u64,
    pub in_sync_files: u64,
    pub invalid: Option<String>,
    pub local_bytes: u64,
    pub local_deleted: u64,
    pub local_directories: u64,
    pub local_files: u64,
    pub local_symlinks: u64,
    pub local_total_items: u64,
    pub need_bytes: u64,
    pub need_deletes: u64,
    pub need_directories: u64,
    pub need_files: u64,
    pub need_symlinks: u64,
    pub need_total_items: u64,
    pub pull_errors: u64,
    pub sequence: u64,
    pub state: String,
    pub state_changed: String,
    pub version: u64,
}

Fields

global_bytes: u64global_deleted: u64global_directories: u64global_files: u64global_symlinks: u64global_total_items: u64ignore_patterns: boolin_sync_bytes: u64in_sync_files: u64invalid: Option<String>local_bytes: u64local_deleted: u64local_directories: u64local_files: u64local_symlinks: u64local_total_items: u64need_bytes: u64need_deletes: u64need_directories: u64need_files: u64need_symlinks: u64need_total_items: u64pull_errors: u64sequence: u64state: Stringstate_changed: Stringversion: u64

Trait Implementations

impl Debug for FolderSummaryData[src]

impl<'de> Deserialize<'de> for FolderSummaryData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.