Struct aws_sdk_ecr::error::InvalidLayerPartException
source · #[non_exhaustive]pub struct InvalidLayerPartException { /* private fields */ }
Expand description
The layer part size is not valid, or the first byte specified is not consecutive to the last byte of a previous layer part upload.
Implementations§
source§impl InvalidLayerPartException
impl InvalidLayerPartException
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The registry ID associated with the exception.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The repository name associated with the exception.
sourcepub fn last_valid_byte_received(&self) -> Option<i64>
pub fn last_valid_byte_received(&self) -> Option<i64>
The last valid byte received from the layer part upload that is associated with the exception.
source§impl InvalidLayerPartException
impl InvalidLayerPartException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvalidLayerPartException
.
Trait Implementations§
source§impl Clone for InvalidLayerPartException
impl Clone for InvalidLayerPartException
source§fn clone(&self) -> InvalidLayerPartException
fn clone(&self) -> InvalidLayerPartException
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 InvalidLayerPartException
impl Debug for InvalidLayerPartException
source§impl Display for InvalidLayerPartException
impl Display for InvalidLayerPartException
source§impl Error for InvalidLayerPartException
impl Error for InvalidLayerPartException
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<InvalidLayerPartException> for InvalidLayerPartException
impl PartialEq<InvalidLayerPartException> for InvalidLayerPartException
source§fn eq(&self, other: &InvalidLayerPartException) -> bool
fn eq(&self, other: &InvalidLayerPartException) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.