pub struct GetObjectAttributesOutput {
pub checksum: Option<Checksum>,
pub delete_marker: Option<bool>,
pub e_tag: Option<String>,
pub last_modified: Option<DateTime<Utc>>,
pub object_parts: Option<GetObjectAttributesParts>,
pub object_size: Option<i64>,
pub request_charged: Option<RequestCharged>,
pub storage_class: Option<StorageClass>,
pub version_id: Option<String>,
}Expand description
S3 GetObjectAttributesOutput.
Fields§
§checksum: Option<Checksum>§delete_marker: Option<bool>HTTP header: x-amz-delete-marker.
e_tag: Option<String>§last_modified: Option<DateTime<Utc>>HTTP header: Last-Modified.
object_parts: Option<GetObjectAttributesParts>§object_size: Option<i64>§request_charged: Option<RequestCharged>HTTP header: x-amz-request-charged.
storage_class: Option<StorageClass>§version_id: Option<String>HTTP header: x-amz-version-id.
Trait Implementations§
Source§impl Clone for GetObjectAttributesOutput
impl Clone for GetObjectAttributesOutput
Source§fn clone(&self) -> GetObjectAttributesOutput
fn clone(&self) -> GetObjectAttributesOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetObjectAttributesOutput
impl Debug for GetObjectAttributesOutput
Source§impl Default for GetObjectAttributesOutput
impl Default for GetObjectAttributesOutput
Source§fn default() -> GetObjectAttributesOutput
fn default() -> GetObjectAttributesOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetObjectAttributesOutput
impl RefUnwindSafe for GetObjectAttributesOutput
impl Send for GetObjectAttributesOutput
impl Sync for GetObjectAttributesOutput
impl Unpin for GetObjectAttributesOutput
impl UnsafeUnpin for GetObjectAttributesOutput
impl UnwindSafe for GetObjectAttributesOutput
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