pub struct PullResult {
pub layers: Vec<PathBuf>,
pub config: ImageConfig,
pub manifest_digest: Digest,
pub cached: bool,
}Expand description
Result of a successful image pull.
Fields§
§layers: Vec<PathBuf>Extracted layer directories in bottom-to-top order.
config: ImageConfigParsed OCI image configuration.
manifest_digest: DigestContent-addressable digest of the resolved manifest.
cached: boolTrue if all layers were already cached and no downloads occurred.
Auto Trait Implementations§
impl Freeze for PullResult
impl RefUnwindSafe for PullResult
impl Send for PullResult
impl Sync for PullResult
impl Unpin for PullResult
impl UnsafeUnpin for PullResult
impl UnwindSafe for PullResult
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