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 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 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§fn eq(&self, other: &LambdaResponse) -> bool
fn eq(&self, other: &LambdaResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LambdaResponse
impl Serialize for LambdaResponse
impl StructuralPartialEq for LambdaResponse
Auto Trait Implementations§
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