pub struct LambdaSearchCriteria {
pub body: Option<String>,
pub name: Option<String>,
pub type: Option<LambdaType>,
pub number_of_results: Option<i32>,
pub order_by: Option<String>,
pub start_row: Option<i32>,
}
Expand description
LambdaSearchCriteria : Search criteria for Lambdas
Fields§
§body: Option<String>
§name: Option<String>
§type: Option<LambdaType>
§number_of_results: Option<i32>
§order_by: Option<String>
§start_row: Option<i32>
Implementations§
source§impl LambdaSearchCriteria
impl LambdaSearchCriteria
sourcepub fn new() -> LambdaSearchCriteria
pub fn new() -> LambdaSearchCriteria
Search criteria for Lambdas
Trait Implementations§
source§impl Clone for LambdaSearchCriteria
impl Clone for LambdaSearchCriteria
source§fn clone(&self) -> LambdaSearchCriteria
fn clone(&self) -> LambdaSearchCriteria
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 LambdaSearchCriteria
impl Debug for LambdaSearchCriteria
source§impl Default for LambdaSearchCriteria
impl Default for LambdaSearchCriteria
source§fn default() -> LambdaSearchCriteria
fn default() -> LambdaSearchCriteria
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LambdaSearchCriteria
impl<'de> Deserialize<'de> for LambdaSearchCriteria
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 LambdaSearchCriteria
impl PartialEq for LambdaSearchCriteria
source§fn eq(&self, other: &LambdaSearchCriteria) -> bool
fn eq(&self, other: &LambdaSearchCriteria) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LambdaSearchCriteria
impl Serialize for LambdaSearchCriteria
impl StructuralPartialEq for LambdaSearchCriteria
Auto Trait Implementations§
impl RefUnwindSafe for LambdaSearchCriteria
impl Send for LambdaSearchCriteria
impl Sync for LambdaSearchCriteria
impl Unpin for LambdaSearchCriteria
impl UnwindSafe for LambdaSearchCriteria
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