pub struct GetInstrumentsInfoParams {
pub category: Category,
pub symbol: Option<String>,
pub status: Option<String>,
pub base_coin: Option<String>,
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
Parameters for getting instruments info.
Fields§
§category: CategoryProduct category.
symbol: Option<String>Trading symbol (optional).
status: Option<String>Symbol status filter.
base_coin: Option<String>Base coin filter.
limit: Option<u32>Limit.
cursor: Option<String>Cursor for pagination.
Implementations§
Trait Implementations§
Source§impl Clone for GetInstrumentsInfoParams
impl Clone for GetInstrumentsInfoParams
Source§fn clone(&self) -> GetInstrumentsInfoParams
fn clone(&self) -> GetInstrumentsInfoParams
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 GetInstrumentsInfoParams
impl Debug for GetInstrumentsInfoParams
Auto Trait Implementations§
impl Freeze for GetInstrumentsInfoParams
impl RefUnwindSafe for GetInstrumentsInfoParams
impl Send for GetInstrumentsInfoParams
impl Sync for GetInstrumentsInfoParams
impl Unpin for GetInstrumentsInfoParams
impl UnwindSafe for GetInstrumentsInfoParams
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