Struct square_api_client::models::SearchCustomersRequest
source · [−]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
sourceimpl Clone for SearchCustomersRequest
impl Clone for SearchCustomersRequest
sourcefn clone(&self) -> SearchCustomersRequest
fn clone(&self) -> SearchCustomersRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchCustomersRequest
impl Debug for SearchCustomersRequest
sourceimpl Default for SearchCustomersRequest
impl Default for SearchCustomersRequest
sourcefn default() -> SearchCustomersRequest
fn default() -> SearchCustomersRequest
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchCustomersRequest> for SearchCustomersRequest
impl PartialEq<SearchCustomersRequest> for SearchCustomersRequest
sourcefn eq(&self, other: &SearchCustomersRequest) -> bool
fn eq(&self, other: &SearchCustomersRequest) -> bool
sourceimpl Serialize for SearchCustomersRequest
impl Serialize for SearchCustomersRequest
impl Eq for SearchCustomersRequest
impl StructuralEq for SearchCustomersRequest
impl StructuralPartialEq for SearchCustomersRequest
Auto Trait Implementations
impl RefUnwindSafe for SearchCustomersRequest
impl Send for SearchCustomersRequest
impl Sync for SearchCustomersRequest
impl Unpin for SearchCustomersRequest
impl UnwindSafe for SearchCustomersRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.