pub struct GetObjectOutput {
pub request_id: String,
pub body: Bytes,
pub content_type: Option<String>,
pub content_length: Option<u64>,
pub etag: Option<String>,
pub last_modified: Option<String>,
pub metadata: Vec<(String, String)>,
pub storage_class: Option<String>,
pub object_type: Option<String>,
}Fields§
§request_id: String§body: Bytes§content_type: Option<String>§content_length: Option<u64>§etag: Option<String>§last_modified: Option<String>§metadata: Vec<(String, String)>§storage_class: Option<String>§object_type: Option<String>Trait Implementations§
Source§impl Clone for GetObjectOutput
impl Clone for GetObjectOutput
Source§fn clone(&self) -> GetObjectOutput
fn clone(&self) -> GetObjectOutput
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 moreAuto Trait Implementations§
impl !Freeze for GetObjectOutput
impl RefUnwindSafe for GetObjectOutput
impl Send for GetObjectOutput
impl Sync for GetObjectOutput
impl Unpin for GetObjectOutput
impl UnsafeUnpin for GetObjectOutput
impl UnwindSafe for GetObjectOutput
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