pub struct GetPagedExchangeAccountsParams {
pub limit: f64,
pub before: Option<String>,
pub after: Option<String>,
}
Expand description
struct for passing parameters to the method [get_paged_exchange_accounts
]
Fields§
§limit: f64
number of exchanges per page
before: Option<String>
§after: Option<String>
Implementations§
Source§impl GetPagedExchangeAccountsParams
impl GetPagedExchangeAccountsParams
Sourcepub fn builder() -> GetPagedExchangeAccountsParamsBuilder
pub fn builder() -> GetPagedExchangeAccountsParamsBuilder
Create an instance of GetPagedExchangeAccountsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetPagedExchangeAccountsParams
impl Clone for GetPagedExchangeAccountsParams
Source§fn clone(&self) -> GetPagedExchangeAccountsParams
fn clone(&self) -> GetPagedExchangeAccountsParams
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 moreAuto Trait Implementations§
impl Freeze for GetPagedExchangeAccountsParams
impl RefUnwindSafe for GetPagedExchangeAccountsParams
impl Send for GetPagedExchangeAccountsParams
impl Sync for GetPagedExchangeAccountsParams
impl Unpin for GetPagedExchangeAccountsParams
impl UnwindSafe for GetPagedExchangeAccountsParams
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