WriteGetObjectResponseRequest

Struct WriteGetObjectResponseRequest 

Source
pub struct WriteGetObjectResponseRequest {
Show 36 fields pub request_route: RequestRoute, pub request_token: RequestToken, pub body: Option<Body>, pub status_code: Option<GetObjectResponseStatusCode>, pub error_code: Option<ErrorCode>, pub error_message: Option<ErrorMessage>, pub accept_ranges: Option<AcceptRanges>, pub cache_control: Option<CacheControl>, pub content_disposition: Option<ContentDisposition>, pub content_encoding: Option<ContentEncoding>, pub content_language: Option<ContentLanguage>, pub content_length: Option<ContentLength>, pub content_range: Option<ContentRange>, pub content_type: Option<ContentType>, pub delete_marker: Option<DeleteMarker>, pub e_tag: Option<ETag>, pub expires: Option<Expires>, pub expiration: Option<Expiration>, pub last_modified: Option<LastModified>, pub missing_meta: Option<MissingMeta>, pub metadata: Option<Metadata>, pub object_lock_mode: Option<ObjectLockMode>, pub object_lock_legal_hold_status: Option<ObjectLockLegalHoldStatus>, pub object_lock_retain_until_date: Option<ObjectLockRetainUntilDate>, pub parts_count: Option<PartsCount>, pub replication_status: Option<ReplicationStatus>, pub request_charged: Option<RequestCharged>, pub restore: Option<Restore>, pub server_side_encryption: Option<ServerSideEncryption>, pub sse_customer_algorithm: Option<SSECustomerAlgorithm>, pub ssekms_key_id: Option<SSEKMSKeyId>, pub sse_customer_key_md5: Option<SSECustomerKeyMD5>, pub storage_class: Option<StorageClass>, pub tag_count: Option<TagCount>, pub version_id: Option<ObjectVersionId>, pub bucket_key_enabled: Option<BucketKeyEnabled>,
}

Fields§

§request_route: RequestRoute§request_token: RequestToken§body: Option<Body>§status_code: Option<GetObjectResponseStatusCode>§error_code: Option<ErrorCode>§error_message: Option<ErrorMessage>§accept_ranges: Option<AcceptRanges>§cache_control: Option<CacheControl>§content_disposition: Option<ContentDisposition>§content_encoding: Option<ContentEncoding>§content_language: Option<ContentLanguage>§content_length: Option<ContentLength>§content_range: Option<ContentRange>§content_type: Option<ContentType>§delete_marker: Option<DeleteMarker>§e_tag: Option<ETag>§expires: Option<Expires>§expiration: Option<Expiration>§last_modified: Option<LastModified>§missing_meta: Option<MissingMeta>§metadata: Option<Metadata>§object_lock_mode: Option<ObjectLockMode>§object_lock_legal_hold_status: Option<ObjectLockLegalHoldStatus>§object_lock_retain_until_date: Option<ObjectLockRetainUntilDate>§parts_count: Option<PartsCount>§replication_status: Option<ReplicationStatus>§request_charged: Option<RequestCharged>§restore: Option<Restore>§server_side_encryption: Option<ServerSideEncryption>§sse_customer_algorithm: Option<SSECustomerAlgorithm>§ssekms_key_id: Option<SSEKMSKeyId>§sse_customer_key_md5: Option<SSECustomerKeyMD5>§storage_class: Option<StorageClass>§tag_count: Option<TagCount>§version_id: Option<ObjectVersionId>§bucket_key_enabled: Option<BucketKeyEnabled>

Trait Implementations§

Source§

impl Debug for WriteGetObjectResponseRequest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for WriteGetObjectResponseRequest

Source§

fn default() -> WriteGetObjectResponseRequest

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for WriteGetObjectResponseRequest

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for WriteGetObjectResponseRequest

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,