pub struct SearchLocationsParams {
pub company_id: Option<String>,
pub email: Option<String>,
pub limit: Option<u32>,
pub order: Option<String>,
pub search_term: Option<String>,
pub skip: Option<u32>,
}Fields§
§company_id: Option<String>§email: Option<String>§limit: Option<u32>§order: Option<String>§search_term: Option<String>§skip: Option<u32>Trait Implementations§
Source§impl Clone for SearchLocationsParams
impl Clone for SearchLocationsParams
Source§fn clone(&self) -> SearchLocationsParams
fn clone(&self) -> SearchLocationsParams
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 SearchLocationsParams
impl Debug for SearchLocationsParams
Source§impl Default for SearchLocationsParams
impl Default for SearchLocationsParams
Source§fn default() -> SearchLocationsParams
fn default() -> SearchLocationsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchLocationsParams
impl<'de> Deserialize<'de> for SearchLocationsParams
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 SearchLocationsParams
impl RefUnwindSafe for SearchLocationsParams
impl Send for SearchLocationsParams
impl Sync for SearchLocationsParams
impl Unpin for SearchLocationsParams
impl UnsafeUnpin for SearchLocationsParams
impl UnwindSafe for SearchLocationsParams
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