pub struct TradesRequest {
pub symbols: Vec<String>,
pub start: Option<String>,
pub end: Option<String>,
pub limit: Option<u32>,
pub feed: Option<DataFeed>,
pub sort: Option<Sort>,
pub asof: Option<String>,
pub currency: Option<Currency>,
pub page_token: Option<String>,
}Fields§
§symbols: Vec<String>§start: Option<String>§end: Option<String>§limit: Option<u32>§feed: Option<DataFeed>§sort: Option<Sort>§asof: Option<String>§currency: Option<Currency>§page_token: Option<String>Trait Implementations§
Source§impl Clone for TradesRequest
impl Clone for TradesRequest
Source§fn clone(&self) -> TradesRequest
fn clone(&self) -> TradesRequest
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 TradesRequest
impl Debug for TradesRequest
Source§impl Default for TradesRequest
impl Default for TradesRequest
Source§fn default() -> TradesRequest
fn default() -> TradesRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TradesRequest
impl RefUnwindSafe for TradesRequest
impl Send for TradesRequest
impl Sync for TradesRequest
impl Unpin for TradesRequest
impl UnwindSafe for TradesRequest
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