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
Auto 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