pub struct GetConnectedAccountTradingPairsParams {
pub account_id: String,
pub page_size: Option<u8>,
pub page_cursor: Option<String>,
}Expand description
struct for passing parameters to the method
ConnectedAccountsBetaApi::get_connected_account_trading_pairs
Fields§
§account_id: StringThe ID of the account to fetch supported pairs for.
page_size: Option<u8>Page size for pagination.
page_cursor: Option<String>Page cursor for pagination.
Implementations§
Source§impl GetConnectedAccountTradingPairsParams
impl GetConnectedAccountTradingPairsParams
Sourcepub fn builder() -> GetConnectedAccountTradingPairsParamsBuilder
pub fn builder() -> GetConnectedAccountTradingPairsParamsBuilder
Create an instance of GetConnectedAccountTradingPairsParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetConnectedAccountTradingPairsParams
impl Clone for GetConnectedAccountTradingPairsParams
Source§fn clone(&self) -> GetConnectedAccountTradingPairsParams
fn clone(&self) -> GetConnectedAccountTradingPairsParams
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 GetConnectedAccountTradingPairsParams
impl RefUnwindSafe for GetConnectedAccountTradingPairsParams
impl Send for GetConnectedAccountTradingPairsParams
impl Sync for GetConnectedAccountTradingPairsParams
impl Unpin for GetConnectedAccountTradingPairsParams
impl UnwindSafe for GetConnectedAccountTradingPairsParams
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