Enum borgbackup::asynchronous::CreateProgress
source · pub enum CreateProgress {
Progress {
original_size: u64,
compressed_size: u64,
deduplicated_size: u64,
nfiles: u64,
path: String,
},
Finished,
}
Available on crate feature
tokio
only.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 copy 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 RefUnwindSafe for CreateProgress
impl Send for CreateProgress
impl Sync for CreateProgress
impl Unpin 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