pub enum ApplyProgress {
Downloading {
bytes_downloaded: u64,
total_bytes: Option<u64>,
},
Verifying,
Extracting,
Replacing,
Executing {
output: String,
stream: OutputStream,
},
Done,
}Expand description
Progress updates during the apply phase.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApplyProgress
impl RefUnwindSafe for ApplyProgress
impl Send for ApplyProgress
impl Sync for ApplyProgress
impl Unpin for ApplyProgress
impl UnsafeUnpin for ApplyProgress
impl UnwindSafe for ApplyProgress
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