pub struct AppendObjectResponse { /* private fields */ }Expand description
Response from the append_object API.
Contains metadata about the object being appended.
Trait Implementations§
Source§impl Clone for AppendObjectResponse
impl Clone for AppendObjectResponse
Source§fn clone(&self) -> AppendObjectResponse
fn clone(&self) -> AppendObjectResponse
Returns a duplicate 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 AppendObjectResponse
impl Debug for AppendObjectResponse
Source§impl HasBucket for AppendObjectResponse
impl HasBucket for AppendObjectResponse
Source§fn bucket(&self) -> Option<&BucketName>
fn bucket(&self) -> Option<&BucketName>
Returns the name of the S3 bucket, if set.
Source§impl HasChecksumHeaders for AppendObjectResponse
impl HasChecksumHeaders for AppendObjectResponse
Source§fn get_checksum(&self, algorithm: ChecksumAlgorithm) -> Option<String>
fn get_checksum(&self, algorithm: ChecksumAlgorithm) -> Option<String>
Extracts the checksum value from response headers for the specified algorithm. Read more
Source§fn checksum_type(&self) -> Option<String>
fn checksum_type(&self) -> Option<String>
Returns the checksum type from response headers. Read more
Source§fn detect_checksum_algorithm(&self) -> Option<ChecksumAlgorithm>
fn detect_checksum_algorithm(&self) -> Option<ChecksumAlgorithm>
Detects which checksum algorithm was used by the server (if any). Read more
Source§impl HasObject for AppendObjectResponse
impl HasObject for AppendObjectResponse
Source§impl HasObjectSize for AppendObjectResponse
impl HasObjectSize for AppendObjectResponse
Source§fn object_size(&self) -> u64
fn object_size(&self) -> u64
Returns the size of the object in bytes, as specified by the
x-amz-object-size header.Source§impl HasRegion for AppendObjectResponse
impl HasRegion for AppendObjectResponse
Source§impl HasS3Fields for AppendObjectResponse
impl HasS3Fields for AppendObjectResponse
Source§impl HasVersion for AppendObjectResponse
impl HasVersion for AppendObjectResponse
Source§fn version_id(&self) -> Option<VersionId>
fn version_id(&self) -> Option<VersionId>
Returns the version ID of the object (
x-amz-version-id), if versioning is enabled for the bucket.Auto Trait Implementations§
impl !Freeze for AppendObjectResponse
impl !RefUnwindSafe for AppendObjectResponse
impl Send for AppendObjectResponse
impl Sync for AppendObjectResponse
impl Unpin for AppendObjectResponse
impl UnsafeUnpin for AppendObjectResponse
impl !UnwindSafe for AppendObjectResponse
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