pub struct ListAccountsParams {
pub limit: Option<u32>,
pub cursor: Option<String>,
pub retail_portfolio_id: Option<String>,
}Expand description
Request parameters for listing accounts.
Fields§
§limit: Option<u32>Maximum number of accounts to return.
cursor: Option<String>Cursor for pagination.
retail_portfolio_id: Option<String>Filter by retail portfolio ID.
Implementations§
Trait Implementations§
Source§impl Clone for ListAccountsParams
impl Clone for ListAccountsParams
Source§fn clone(&self) -> ListAccountsParams
fn clone(&self) -> ListAccountsParams
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 ListAccountsParams
impl Debug for ListAccountsParams
Source§impl Default for ListAccountsParams
impl Default for ListAccountsParams
Source§fn default() -> ListAccountsParams
fn default() -> ListAccountsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListAccountsParams
impl RefUnwindSafe for ListAccountsParams
impl Send for ListAccountsParams
impl Sync for ListAccountsParams
impl Unpin for ListAccountsParams
impl UnwindSafe for ListAccountsParams
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