pub struct GetTradeHistoryRequestQuery {
pub days: Option<i32>,
}Fields§
§days: Option<i32>The number of prior days prior to include in response, up to a maximum of 7. If omitted, only the current day’s executions will be returned.
- Example:
Some(3i32)
Trait Implementations§
Source§impl Clone for GetTradeHistoryRequestQuery
impl Clone for GetTradeHistoryRequestQuery
Source§fn clone(&self) -> GetTradeHistoryRequestQuery
fn clone(&self) -> GetTradeHistoryRequestQuery
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 GetTradeHistoryRequestQuery
impl Debug for GetTradeHistoryRequestQuery
impl StructuralPartialEq for GetTradeHistoryRequestQuery
Auto Trait Implementations§
impl Freeze for GetTradeHistoryRequestQuery
impl RefUnwindSafe for GetTradeHistoryRequestQuery
impl Send for GetTradeHistoryRequestQuery
impl Sync for GetTradeHistoryRequestQuery
impl Unpin for GetTradeHistoryRequestQuery
impl UnsafeUnpin for GetTradeHistoryRequestQuery
impl UnwindSafe for GetTradeHistoryRequestQuery
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