pub struct GetTradesOpts {
pub symbol: Option<String>,
pub symbol_id: Option<u32>,
pub limit: Option<u32>,
pub start: Option<i64>,
pub end: Option<i64>,
pub page_token: Option<String>,
}Expand description
Options for crate::services::MarketDataService::get_trades_with.
Fields§
§symbol: Option<String>§symbol_id: Option<u32>§limit: Option<u32>§start: Option<i64>Inclusive lower bound (unix seconds UTC).
end: Option<i64>Inclusive upper bound (unix seconds UTC).
page_token: Option<String>Trait Implementations§
Source§impl Clone for GetTradesOpts
impl Clone for GetTradesOpts
Source§fn clone(&self) -> GetTradesOpts
fn clone(&self) -> GetTradesOpts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetTradesOpts
impl Debug for GetTradesOpts
Source§impl Default for GetTradesOpts
impl Default for GetTradesOpts
Source§fn default() -> GetTradesOpts
fn default() -> GetTradesOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetTradesOpts
impl RefUnwindSafe for GetTradesOpts
impl Send for GetTradesOpts
impl Sync for GetTradesOpts
impl Unpin for GetTradesOpts
impl UnsafeUnpin for GetTradesOpts
impl UnwindSafe for GetTradesOpts
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