pub enum InstallProgress {
Planning,
Extracting {
current: u64,
total: u64,
path: PathBuf,
},
Copying {
current: u64,
total: u64,
path: PathBuf,
},
Integrating {
step: &'static str,
},
Finished,
}Variants§
Trait Implementations§
Source§impl Clone for InstallProgress
impl Clone for InstallProgress
Source§fn clone(&self) -> InstallProgress
fn clone(&self) -> InstallProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InstallProgress
impl RefUnwindSafe for InstallProgress
impl Send for InstallProgress
impl Sync for InstallProgress
impl Unpin for InstallProgress
impl UnsafeUnpin for InstallProgress
impl UnwindSafe for InstallProgress
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