pub struct SearchCustomersQuery {
pub filter: Option<SearchCustomersFilter>,
pub sort: Option<SearchCustomersSort>,
}
Expand description
Contains query criteria for the search.
Fields§
§filter: Option<SearchCustomersFilter>
Criteria to filter results by.
sort: Option<SearchCustomersSort>
Criteria to sort results by.
Trait Implementations§
Source§impl Clone for SearchCustomersQuery
impl Clone for SearchCustomersQuery
Source§fn clone(&self) -> SearchCustomersQuery
fn clone(&self) -> SearchCustomersQuery
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 SearchCustomersQuery
impl Debug for SearchCustomersQuery
Source§impl Default for SearchCustomersQuery
impl Default for SearchCustomersQuery
Source§fn default() -> SearchCustomersQuery
fn default() -> SearchCustomersQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchCustomersQuery
impl PartialEq for SearchCustomersQuery
Source§impl Serialize for SearchCustomersQuery
impl Serialize for SearchCustomersQuery
impl Eq for SearchCustomersQuery
impl StructuralPartialEq for SearchCustomersQuery
Auto Trait Implementations§
impl Freeze for SearchCustomersQuery
impl RefUnwindSafe for SearchCustomersQuery
impl Send for SearchCustomersQuery
impl Sync for SearchCustomersQuery
impl Unpin for SearchCustomersQuery
impl UnwindSafe for SearchCustomersQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.