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