pub struct PutObjectResponse {
pub stream_id: Option<String>,
}
Expand description
Response to PutObject operation
Fields§
§stream_id: Option<String>
If this is a multipart upload, streamId
must be returned
with subsequent PutChunk requests
Trait Implementations§
source§impl Clone for PutObjectResponse
impl Clone for PutObjectResponse
source§fn clone(&self) -> PutObjectResponse
fn clone(&self) -> PutObjectResponse
Returns a copy 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 PutObjectResponse
impl Debug for PutObjectResponse
source§impl Default for PutObjectResponse
impl Default for PutObjectResponse
source§fn default() -> PutObjectResponse
fn default() -> PutObjectResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PutObjectResponse
impl<'de> Deserialize<'de> for PutObjectResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq<PutObjectResponse> for PutObjectResponse
impl PartialEq<PutObjectResponse> for PutObjectResponse
source§fn eq(&self, other: &PutObjectResponse) -> bool
fn eq(&self, other: &PutObjectResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.