pub struct GetTickersParams {
pub category: Category,
pub symbol: Option<String>,
pub base_coin: Option<String>,
pub exp_date: Option<String>,
}Expand description
Parameters for getting tickers.
Fields§
§category: CategoryProduct category.
symbol: Option<String>Trading symbol (optional - if not set, returns all).
base_coin: Option<String>Base coin filter.
exp_date: Option<String>Expiry date filter (options).
Implementations§
Trait Implementations§
Source§impl Clone for GetTickersParams
impl Clone for GetTickersParams
Source§fn clone(&self) -> GetTickersParams
fn clone(&self) -> GetTickersParams
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 GetTickersParams
impl Debug for GetTickersParams
Auto Trait Implementations§
impl Freeze for GetTickersParams
impl RefUnwindSafe for GetTickersParams
impl Send for GetTickersParams
impl Sync for GetTickersParams
impl Unpin for GetTickersParams
impl UnwindSafe for GetTickersParams
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