pub struct CachedImageMetadata {
pub manifest_digest: String,
pub config_digest: String,
pub config: ImageConfig,
pub layers: Vec<CachedLayerMetadata>,
}Expand description
Cached metadata for a pulled image reference.
Fields§
§manifest_digest: StringContent-addressable digest of the resolved manifest.
config_digest: StringContent-addressable digest of the config blob.
config: ImageConfigParsed OCI image configuration.
layers: Vec<CachedLayerMetadata>Layer metadata in bottom-to-top order.
Trait Implementations§
Source§impl Clone for CachedImageMetadata
impl Clone for CachedImageMetadata
Source§fn clone(&self) -> CachedImageMetadata
fn clone(&self) -> CachedImageMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CachedImageMetadata
impl Debug for CachedImageMetadata
Source§impl<'de> Deserialize<'de> for CachedImageMetadata
impl<'de> Deserialize<'de> for CachedImageMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CachedImageMetadata
impl RefUnwindSafe for CachedImageMetadata
impl Send for CachedImageMetadata
impl Sync for CachedImageMetadata
impl Unpin for CachedImageMetadata
impl UnsafeUnpin for CachedImageMetadata
impl UnwindSafe for CachedImageMetadata
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