Struct aws_sdk_ecrpublic::error::InvalidLayerPartException [−][src]
#[non_exhaustive]pub struct InvalidLayerPartException {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub upload_id: Option<String>,
pub last_valid_byte_received: Option<i64>,
pub message: Option<String>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.registry_id: Option<String>
The AWS account ID associated with the layer part.
repository_name: Option<String>
The name of the repository.
upload_id: Option<String>
The upload ID associated with the layer part.
last_valid_byte_received: Option<i64>
The position of the last byte of the layer part.
message: Option<String>
Implementations
The AWS account ID associated with the layer part.
The name of the repository.
The position of the last byte of the layer part.
Creates a new builder-style object to manufacture InvalidLayerPartException
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more