pub struct SearchCustomersRequest {
pub cursor: Option<String>,
pub query: Option<SearchCustomersQuery>,
pub limit: Option<i32>,
}
Expand description
This is a model struct for SearchCustomersRequest type.
Fields§
§cursor: Option<String>
A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for your original query. For more information, see Pagination.
query: Option<SearchCustomersQuery>
Query conditions used to filter or sort the results. Note that when retrieving additional pages using a cursor, you must use the original query.
limit: Option<i32>
The maximum number of results to be returned in a single page. It is possible to receive fewer results than the specified limit on a given page.
Default: 500
Trait Implementations§
Source§impl Clone for SearchCustomersRequest
impl Clone for SearchCustomersRequest
Source§fn clone(&self) -> SearchCustomersRequest
fn clone(&self) -> SearchCustomersRequest
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 SearchCustomersRequest
impl Debug for SearchCustomersRequest
Source§impl Default for SearchCustomersRequest
impl Default for SearchCustomersRequest
Source§fn default() -> SearchCustomersRequest
fn default() -> SearchCustomersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchCustomersRequest
impl PartialEq for SearchCustomersRequest
Source§impl Serialize for SearchCustomersRequest
impl Serialize for SearchCustomersRequest
impl Eq for SearchCustomersRequest
impl StructuralPartialEq for SearchCustomersRequest
Auto Trait Implementations§
impl Freeze for SearchCustomersRequest
impl RefUnwindSafe for SearchCustomersRequest
impl Send for SearchCustomersRequest
impl Sync for SearchCustomersRequest
impl Unpin for SearchCustomersRequest
impl UnwindSafe for SearchCustomersRequest
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.