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 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 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§impl Serialize for LambdaSearchCriteria
impl Serialize for LambdaSearchCriteria
impl StructuralPartialEq for LambdaSearchCriteria
Auto Trait Implementations§
impl Freeze for LambdaSearchCriteria
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