pub struct FillListQuery {
pub product_id: Option<String>,
pub venue_order_id: Option<String>,
pub start: Option<DateTime<Utc>>,
pub end: Option<DateTime<Utc>>,
pub limit: Option<u32>,
}Expand description
Filter parameters for GET /api/v3/brokerage/orders/historical/fills
(List Fills).
§References
Fields§
§product_id: Option<String>§venue_order_id: Option<String>§start: Option<DateTime<Utc>>§end: Option<DateTime<Utc>>§limit: Option<u32>Trait Implementations§
Source§impl Clone for FillListQuery
impl Clone for FillListQuery
Source§fn clone(&self) -> FillListQuery
fn clone(&self) -> FillListQuery
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 FillListQuery
impl Debug for FillListQuery
Source§impl Default for FillListQuery
impl Default for FillListQuery
Source§fn default() -> FillListQuery
fn default() -> FillListQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FillListQuery
impl RefUnwindSafe for FillListQuery
impl Send for FillListQuery
impl Sync for FillListQuery
impl Unpin for FillListQuery
impl UnsafeUnpin for FillListQuery
impl UnwindSafe for FillListQuery
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