pub struct ListCustomersOptions {
pub page: Option<i64>,
pub page_size: Option<i64>,
pub sort: Vec<CustomerSort>,
pub email: Option<String>,
}Expand description
Options for listing customers.
Fields§
§page: Option<i64>§page_size: Option<i64>§sort: Vec<CustomerSort>§email: Option<String>Trait Implementations§
Source§impl Clone for ListCustomersOptions
impl Clone for ListCustomersOptions
Source§fn clone(&self) -> ListCustomersOptions
fn clone(&self) -> ListCustomersOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 ListCustomersOptions
impl Debug for ListCustomersOptions
Source§impl Default for ListCustomersOptions
impl Default for ListCustomersOptions
Source§fn default() -> ListCustomersOptions
fn default() -> ListCustomersOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListCustomersOptions
impl RefUnwindSafe for ListCustomersOptions
impl Send for ListCustomersOptions
impl Sync for ListCustomersOptions
impl Unpin for ListCustomersOptions
impl UnsafeUnpin for ListCustomersOptions
impl UnwindSafe for ListCustomersOptions
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