Struct aws_sdk_ecr::input::UploadLayerPartInput
source · [−]#[non_exhaustive]pub struct UploadLayerPartInput { /* private fields */ }
Implementations
sourceimpl UploadLayerPartInput
impl UploadLayerPartInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UploadLayerPart, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UploadLayerPart, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UploadLayerPart
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UploadLayerPartInput
.
sourceimpl UploadLayerPartInput
impl UploadLayerPartInput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The Amazon Web Services account ID associated with the registry to which you are uploading layer parts. If you do not specify a registry, the default registry is assumed.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository to which you are uploading layer parts.
sourcepub fn upload_id(&self) -> Option<&str>
pub fn upload_id(&self) -> Option<&str>
The upload ID from a previous InitiateLayerUpload
operation to associate with the layer part upload.
sourcepub fn part_first_byte(&self) -> Option<i64>
pub fn part_first_byte(&self) -> Option<i64>
The position of the first byte of the layer part witin the overall image layer.
sourcepub fn part_last_byte(&self) -> Option<i64>
pub fn part_last_byte(&self) -> Option<i64>
The position of the last byte of the layer part within the overall image layer.
sourcepub fn layer_part_blob(&self) -> Option<&Blob>
pub fn layer_part_blob(&self) -> Option<&Blob>
The base64-encoded layer part payload.
Trait Implementations
sourceimpl Clone for UploadLayerPartInput
impl Clone for UploadLayerPartInput
sourcefn clone(&self) -> UploadLayerPartInput
fn clone(&self) -> UploadLayerPartInput
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 UploadLayerPartInput
impl Debug for UploadLayerPartInput
sourceimpl PartialEq<UploadLayerPartInput> for UploadLayerPartInput
impl PartialEq<UploadLayerPartInput> for UploadLayerPartInput
sourcefn eq(&self, other: &UploadLayerPartInput) -> bool
fn eq(&self, other: &UploadLayerPartInput) -> bool
impl StructuralPartialEq for UploadLayerPartInput
Auto Trait Implementations
impl RefUnwindSafe for UploadLayerPartInput
impl Send for UploadLayerPartInput
impl Sync for UploadLayerPartInput
impl Unpin for UploadLayerPartInput
impl UnwindSafe for UploadLayerPartInput
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