Struct aws_sdk_ecr::types::ImageIdentifier
source · #[non_exhaustive]pub struct ImageIdentifier {
pub image_digest: Option<String>,
pub image_tag: Option<String>,
}
Expand description
An object with identifying information for an image in an Amazon ECR repository.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image_digest: Option<String>
The sha256
digest of the image manifest.
image_tag: Option<String>
The tag used for the image.
Implementations§
source§impl ImageIdentifier
impl ImageIdentifier
sourcepub fn builder() -> ImageIdentifierBuilder
pub fn builder() -> ImageIdentifierBuilder
Creates a new builder-style object to manufacture ImageIdentifier
.
Trait Implementations§
source§impl Clone for ImageIdentifier
impl Clone for ImageIdentifier
source§fn clone(&self) -> ImageIdentifier
fn clone(&self) -> ImageIdentifier
Returns a copy 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 ImageIdentifier
impl Debug for ImageIdentifier
source§impl PartialEq for ImageIdentifier
impl PartialEq for ImageIdentifier
source§fn eq(&self, other: &ImageIdentifier) -> bool
fn eq(&self, other: &ImageIdentifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageIdentifier
Auto Trait Implementations§
impl RefUnwindSafe for ImageIdentifier
impl Send for ImageIdentifier
impl Sync for ImageIdentifier
impl Unpin for ImageIdentifier
impl UnwindSafe for ImageIdentifier
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.