pub enum InstallProgress<'a> {
Fancy(InstallProgressFancy<'a>),
Fd(RawFd),
}Expand description
Enum for displaying Progress of Package Installation.
The Default implementation mirrors apt’s.
Variants§
Fancy(InstallProgressFancy<'a>)
Fd(RawFd)
Implementations§
Source§impl InstallProgress<'_>
impl InstallProgress<'_>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for InstallProgress<'a>
impl<'a> !RefUnwindSafe for InstallProgress<'a>
impl<'a> !Send for InstallProgress<'a>
impl<'a> !Sync for InstallProgress<'a>
impl<'a> Unpin for InstallProgress<'a>
impl<'a> !UnwindSafe for InstallProgress<'a>
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