pub enum PullStatus {
Pending,
Downloading,
Extracting,
Complete,
Failed,
}Expand description
Image pull progress.
Variants§
Pending
Pull has not started.
Downloading
Downloading layers.
Extracting
Extracting layers.
Complete
Pull complete.
Failed
Pull failed.
Implementations§
Source§impl PullStatus
impl PullStatus
Sourcepub fn is_terminal(self) -> bool
pub fn is_terminal(self) -> bool
Check if pull is terminal.
Trait Implementations§
Source§impl Clone for PullStatus
impl Clone for PullStatus
Source§fn clone(&self) -> PullStatus
fn clone(&self) -> PullStatus
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PullStatus
impl Debug for PullStatus
Source§impl PartialEq for PullStatus
impl PartialEq for PullStatus
impl Copy for PullStatus
impl Eq for PullStatus
impl StructuralPartialEq for PullStatus
Auto Trait Implementations§
impl Freeze for PullStatus
impl RefUnwindSafe for PullStatus
impl Send for PullStatus
impl Sync for PullStatus
impl Unpin for PullStatus
impl UnwindSafe for PullStatus
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)