pub struct S3ObjectLambdaResponse {
pub request_token: String,
pub request_route: String,
pub status_code: Option<u16>,
pub body_base64: String,
pub body_size: u64,
pub content_type: Option<String>,
pub error_message: Option<String>,
pub metadata: BTreeMap<String, String>,
}Fields§
§request_token: String§request_route: String§status_code: Option<u16>§body_base64: String§body_size: u64§content_type: Option<String>§error_message: Option<String>§metadata: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for S3ObjectLambdaResponse
impl Clone for S3ObjectLambdaResponse
Source§fn clone(&self) -> S3ObjectLambdaResponse
fn clone(&self) -> S3ObjectLambdaResponse
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 S3ObjectLambdaResponse
impl Debug for S3ObjectLambdaResponse
Source§impl<'de> Deserialize<'de> for S3ObjectLambdaResponse
impl<'de> Deserialize<'de> for S3ObjectLambdaResponse
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
Auto Trait Implementations§
impl Freeze for S3ObjectLambdaResponse
impl RefUnwindSafe for S3ObjectLambdaResponse
impl Send for S3ObjectLambdaResponse
impl Sync for S3ObjectLambdaResponse
impl Unpin for S3ObjectLambdaResponse
impl UnsafeUnpin for S3ObjectLambdaResponse
impl UnwindSafe for S3ObjectLambdaResponse
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