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