#[non_exhaustive]pub struct ReferencedImageDetailBuilder { /* private fields */ }Expand description
A builder for ReferencedImageDetail.
Implementations§
source§impl ReferencedImageDetailBuilder
impl ReferencedImageDetailBuilder
sourcepub fn image_digest(self, input: impl Into<String>) -> Self
pub fn image_digest(self, input: impl Into<String>) -> Self
The sha256 digest of the image manifest.
sourcepub fn set_image_digest(self, input: Option<String>) -> Self
pub fn set_image_digest(self, input: Option<String>) -> Self
The sha256 digest of the image manifest.
sourcepub fn get_image_digest(&self) -> &Option<String>
pub fn get_image_digest(&self) -> &Option<String>
The sha256 digest of the image manifest.
sourcepub fn image_size_in_bytes(self, input: i64) -> Self
pub fn image_size_in_bytes(self, input: i64) -> Self
The size, in bytes, of the image in the repository.
If the image is a manifest list, this is the max size of all manifests in the list.
Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it might return a larger image size than the image sizes that are returned by DescribeImages.
sourcepub fn set_image_size_in_bytes(self, input: Option<i64>) -> Self
pub fn set_image_size_in_bytes(self, input: Option<i64>) -> Self
The size, in bytes, of the image in the repository.
If the image is a manifest list, this is the max size of all manifests in the list.
Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it might return a larger image size than the image sizes that are returned by DescribeImages.
sourcepub fn get_image_size_in_bytes(&self) -> &Option<i64>
pub fn get_image_size_in_bytes(&self) -> &Option<i64>
The size, in bytes, of the image in the repository.
If the image is a manifest list, this is the max size of all manifests in the list.
Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it might return a larger image size than the image sizes that are returned by DescribeImages.
sourcepub fn image_pushed_at(self, input: DateTime) -> Self
pub fn image_pushed_at(self, input: DateTime) -> Self
The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
sourcepub fn set_image_pushed_at(self, input: Option<DateTime>) -> Self
pub fn set_image_pushed_at(self, input: Option<DateTime>) -> Self
The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
sourcepub fn get_image_pushed_at(&self) -> &Option<DateTime>
pub fn get_image_pushed_at(&self) -> &Option<DateTime>
The date and time, expressed in standard JavaScript date format, which the current image tag was pushed to the repository at.
sourcepub fn image_manifest_media_type(self, input: impl Into<String>) -> Self
pub fn image_manifest_media_type(self, input: impl Into<String>) -> Self
The media type of the image manifest.
sourcepub fn set_image_manifest_media_type(self, input: Option<String>) -> Self
pub fn set_image_manifest_media_type(self, input: Option<String>) -> Self
The media type of the image manifest.
sourcepub fn get_image_manifest_media_type(&self) -> &Option<String>
pub fn get_image_manifest_media_type(&self) -> &Option<String>
The media type of the image manifest.
sourcepub fn artifact_media_type(self, input: impl Into<String>) -> Self
pub fn artifact_media_type(self, input: impl Into<String>) -> Self
The artifact media type of the image.
sourcepub fn set_artifact_media_type(self, input: Option<String>) -> Self
pub fn set_artifact_media_type(self, input: Option<String>) -> Self
The artifact media type of the image.
sourcepub fn get_artifact_media_type(&self) -> &Option<String>
pub fn get_artifact_media_type(&self) -> &Option<String>
The artifact media type of the image.
sourcepub fn build(self) -> ReferencedImageDetail
pub fn build(self) -> ReferencedImageDetail
Consumes the builder and constructs a ReferencedImageDetail.
Trait Implementations§
source§impl Clone for ReferencedImageDetailBuilder
impl Clone for ReferencedImageDetailBuilder
source§fn clone(&self) -> ReferencedImageDetailBuilder
fn clone(&self) -> ReferencedImageDetailBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReferencedImageDetailBuilder
impl Debug for ReferencedImageDetailBuilder
source§impl Default for ReferencedImageDetailBuilder
impl Default for ReferencedImageDetailBuilder
source§fn default() -> ReferencedImageDetailBuilder
fn default() -> ReferencedImageDetailBuilder
source§impl PartialEq for ReferencedImageDetailBuilder
impl PartialEq for ReferencedImageDetailBuilder
source§fn eq(&self, other: &ReferencedImageDetailBuilder) -> bool
fn eq(&self, other: &ReferencedImageDetailBuilder) -> bool
self and other values to be equal, and is used
by ==.