Struct binance::account::OrdersQuery
source · [−]pub struct OrdersQuery {
pub symbol: String,
pub order_id: Option<u64>,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub limit: Option<u32>,
pub recv_window: Option<u64>,
}Expand description
Order Status Request perform a query on all orders for the account
Fields
symbol: Stringorder_id: Option<u64>start_time: Option<u64>end_time: Option<u64>limit: Option<u32>Default 500 max 1000
recv_window: Option<u64>Cannot be greater than 60000
Trait Implementations
sourceimpl Clone for OrdersQuery
impl Clone for OrdersQuery
sourcefn clone(&self) -> OrdersQuery
fn clone(&self) -> OrdersQuery
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for OrdersQuery
impl Debug for OrdersQuery
sourceimpl Default for OrdersQuery
impl Default for OrdersQuery
sourcefn default() -> OrdersQuery
fn default() -> OrdersQuery
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for OrdersQuery
impl<'de> Deserialize<'de> for OrdersQuery
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for OrdersQuery
impl Serialize for OrdersQuery
Auto Trait Implementations
impl RefUnwindSafe for OrdersQuery
impl Send for OrdersQuery
impl Sync for OrdersQuery
impl Unpin for OrdersQuery
impl UnwindSafe for OrdersQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more