Struct aws_sdk_ecr::types::LayerFailure
source · #[non_exhaustive]pub struct LayerFailure {
pub layer_digest: Option<String>,
pub failure_code: Option<LayerFailureCode>,
pub failure_reason: Option<String>,
}
Expand description
An object representing an Amazon ECR image layer failure.
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.layer_digest: Option<String>
The layer digest associated with the failure.
failure_code: Option<LayerFailureCode>
The failure code associated with the failure.
failure_reason: Option<String>
The reason for the failure.
Implementations§
source§impl LayerFailure
impl LayerFailure
sourcepub fn layer_digest(&self) -> Option<&str>
pub fn layer_digest(&self) -> Option<&str>
The layer digest associated with the failure.
sourcepub fn failure_code(&self) -> Option<&LayerFailureCode>
pub fn failure_code(&self) -> Option<&LayerFailureCode>
The failure code associated with the failure.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The reason for the failure.
source§impl LayerFailure
impl LayerFailure
sourcepub fn builder() -> LayerFailureBuilder
pub fn builder() -> LayerFailureBuilder
Creates a new builder-style object to manufacture LayerFailure
.
Trait Implementations§
source§impl Clone for LayerFailure
impl Clone for LayerFailure
source§fn clone(&self) -> LayerFailure
fn clone(&self) -> LayerFailure
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 LayerFailure
impl Debug for LayerFailure
source§impl PartialEq for LayerFailure
impl PartialEq for LayerFailure
source§fn eq(&self, other: &LayerFailure) -> bool
fn eq(&self, other: &LayerFailure) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LayerFailure
Auto Trait Implementations§
impl Freeze for LayerFailure
impl RefUnwindSafe for LayerFailure
impl Send for LayerFailure
impl Sync for LayerFailure
impl Unpin for LayerFailure
impl UnwindSafe for LayerFailure
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.