[][src]Struct duplicati::client::progress::ProgressState

pub struct ProgressState {
    pub backup_id: u32,
    pub task_id: u32,
    pub backend_action: String,
    pub backend_path: Option<String>,
    pub backend_file_size: i64,
    pub backend_file_progress: i64,
    pub backend_speed: u32,
    pub backend_is_blocking: bool,
    pub current_filename: String,
    pub current_filesize: u64,
    pub current_fileoffset: u64,
    pub current_filecomplete: bool,
    pub phase: String,
    pub overall_progress: f32,
    pub processed_file_count: u64,
    pub processed_file_size: u64,
    pub total_file_count: u64,
    pub total_file_size: u64,
    pub still_counting: bool,
}

Fields

backup_id: u32task_id: u32backend_action: Stringbackend_path: Option<String>backend_file_size: i64backend_file_progress: i64backend_speed: u32backend_is_blocking: boolcurrent_filename: Stringcurrent_filesize: u64current_fileoffset: u64current_filecomplete: boolphase: Stringoverall_progress: f32processed_file_count: u64processed_file_size: u64total_file_count: u64total_file_size: u64still_counting: bool

Trait Implementations

impl Debug for ProgressState[src]

impl<'de> Deserialize<'de> for ProgressState[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,