pub struct GetTradingProvidersParams {
pub page_size: Option<u8>,
pub page_cursor: Option<String>,
}Expand description
struct for passing parameters to the method
TradingBetaApi::get_trading_providers
Fields§
§page_size: Option<u8>Page size for pagination.
page_cursor: Option<String>Page cursor for pagination.
Implementations§
Source§impl GetTradingProvidersParams
impl GetTradingProvidersParams
Sourcepub fn builder() -> GetTradingProvidersParamsBuilder
pub fn builder() -> GetTradingProvidersParamsBuilder
Create an instance of GetTradingProvidersParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetTradingProvidersParams
impl Clone for GetTradingProvidersParams
Source§fn clone(&self) -> GetTradingProvidersParams
fn clone(&self) -> GetTradingProvidersParams
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 GetTradingProvidersParams
impl RefUnwindSafe for GetTradingProvidersParams
impl Send for GetTradingProvidersParams
impl Sync for GetTradingProvidersParams
impl Unpin for GetTradingProvidersParams
impl UnwindSafe for GetTradingProvidersParams
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