pub enum SplitProgress {
Stage(&'static str),
Chunks {
done: usize,
total: usize,
percent: f32,
},
Writing {
stem: String,
done: usize,
total: usize,
percent: f32,
},
Finished,
}Variants§
Trait Implementations§
Source§impl Clone for SplitProgress
impl Clone for SplitProgress
Source§fn clone(&self) -> SplitProgress
fn clone(&self) -> SplitProgress
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 SplitProgress
impl Debug for SplitProgress
Auto Trait Implementations§
impl Freeze for SplitProgress
impl RefUnwindSafe for SplitProgress
impl Send for SplitProgress
impl Sync for SplitProgress
impl Unpin for SplitProgress
impl UnwindSafe for SplitProgress
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