pub enum CreateProgress {
Progress {
original_size: u64,
compressed_size: u64,
deduplicated_size: u64,
nfiles: u64,
path: String,
},
Finished,
}Expand description
The progress of a borg create command.
Variants§
Trait Implementations§
Source§impl Clone for CreateProgress
impl Clone for CreateProgress
Source§fn clone(&self) -> CreateProgress
fn clone(&self) -> CreateProgress
Returns a duplicate 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 CreateProgress
impl Debug for CreateProgress
Source§impl<'de> Deserialize<'de> for CreateProgress
impl<'de> Deserialize<'de> for CreateProgress
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 Display for CreateProgress
impl Display for CreateProgress
Auto Trait Implementations§
impl Freeze for CreateProgress
impl RefUnwindSafe for CreateProgress
impl Send for CreateProgress
impl Sync for CreateProgress
impl Unpin for CreateProgress
impl UnsafeUnpin for CreateProgress
impl UnwindSafe for CreateProgress
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