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
sourceimpl 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.
sourceimpl InvalidLayerPartException
impl InvalidLayerPartException
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvalidLayerPartException
.
Trait Implementations
sourceimpl Clone for InvalidLayerPartException
impl Clone for InvalidLayerPartException
sourcefn clone(&self) -> InvalidLayerPartException
fn clone(&self) -> InvalidLayerPartException
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InvalidLayerPartException
impl Debug for InvalidLayerPartException
sourceimpl Display for InvalidLayerPartException
impl Display for InvalidLayerPartException
sourceimpl Error for InvalidLayerPartException
impl Error for InvalidLayerPartException
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<InvalidLayerPartException> for InvalidLayerPartException
impl PartialEq<InvalidLayerPartException> for InvalidLayerPartException
sourcefn eq(&self, other: &InvalidLayerPartException) -> bool
fn eq(&self, other: &InvalidLayerPartException) -> bool
impl StructuralPartialEq for InvalidLayerPartException
Auto Trait Implementations
impl RefUnwindSafe for InvalidLayerPartException
impl Send for InvalidLayerPartException
impl Sync for InvalidLayerPartException
impl Unpin for InvalidLayerPartException
impl UnwindSafe for InvalidLayerPartException
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more