pub struct RdsLambdaInvokeResponse {
pub status_code: i32,
pub payload: Option<Value>,
pub executed_version: Option<String>,
pub log_result: Option<String>,
}Expand description
Shape returned by the bridge — mirrors what aws_lambda.invoke()
returns to SQL callers (RDS/Aurora-compatible).
Fields§
§status_code: i32§payload: Option<Value>§executed_version: Option<String>§log_result: Option<String>Trait Implementations§
Source§impl Clone for RdsLambdaInvokeResponse
impl Clone for RdsLambdaInvokeResponse
Source§fn clone(&self) -> RdsLambdaInvokeResponse
fn clone(&self) -> RdsLambdaInvokeResponse
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 RdsLambdaInvokeResponse
impl Debug for RdsLambdaInvokeResponse
Source§impl<'de> Deserialize<'de> for RdsLambdaInvokeResponse
impl<'de> Deserialize<'de> for RdsLambdaInvokeResponse
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 RdsLambdaInvokeResponse
impl RefUnwindSafe for RdsLambdaInvokeResponse
impl Send for RdsLambdaInvokeResponse
impl Sync for RdsLambdaInvokeResponse
impl Unpin for RdsLambdaInvokeResponse
impl UnsafeUnpin for RdsLambdaInvokeResponse
impl UnwindSafe for RdsLambdaInvokeResponse
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