pub struct LambdaResponse {
pub lambda: Option<Box<Lambda>>,
pub lambdas: Option<Vec<Lambda>>,
}
Expand description
LambdaResponse : Lambda API response object.
Fields§
§lambda: Option<Box<Lambda>>
§lambdas: Option<Vec<Lambda>>
Implementations§
Source§impl LambdaResponse
impl LambdaResponse
Sourcepub fn new() -> LambdaResponse
pub fn new() -> LambdaResponse
Lambda API response object.
Trait Implementations§
Source§impl Clone for LambdaResponse
impl Clone for LambdaResponse
Source§fn clone(&self) -> LambdaResponse
fn clone(&self) -> LambdaResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LambdaResponse
impl Debug for LambdaResponse
Source§impl Default for LambdaResponse
impl Default for LambdaResponse
Source§fn default() -> LambdaResponse
fn default() -> LambdaResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaResponse
impl<'de> Deserialize<'de> for LambdaResponse
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 for LambdaResponse
impl PartialEq for LambdaResponse
Source§impl Serialize for LambdaResponse
impl Serialize for LambdaResponse
impl StructuralPartialEq for LambdaResponse
Auto Trait Implementations§
impl Freeze for LambdaResponse
impl RefUnwindSafe for LambdaResponse
impl Send for LambdaResponse
impl Sync for LambdaResponse
impl Unpin for LambdaResponse
impl UnwindSafe for LambdaResponse
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