pub struct MarginOwnTradesQuery {
pub symbol: String,
pub is_isolated: Option<String>,
pub from_id: u64,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub limit: Option<u8>,
}Fields§
§symbol: String§is_isolated: Option<String>“TRUE” or “FALSE”, default is “FALSE”
from_id: u64§start_time: Option<u64>§end_time: Option<u64>§limit: Option<u8>Trait Implementations§
Source§impl Clone for MarginOwnTradesQuery
impl Clone for MarginOwnTradesQuery
Source§fn clone(&self) -> MarginOwnTradesQuery
fn clone(&self) -> MarginOwnTradesQuery
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 MarginOwnTradesQuery
impl Debug for MarginOwnTradesQuery
Source§impl Default for MarginOwnTradesQuery
impl Default for MarginOwnTradesQuery
Source§fn default() -> MarginOwnTradesQuery
fn default() -> MarginOwnTradesQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MarginOwnTradesQuery
impl<'de> Deserialize<'de> for MarginOwnTradesQuery
Source§fn 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
Auto Trait Implementations§
impl Freeze for MarginOwnTradesQuery
impl RefUnwindSafe for MarginOwnTradesQuery
impl Send for MarginOwnTradesQuery
impl Sync for MarginOwnTradesQuery
impl Unpin for MarginOwnTradesQuery
impl UnwindSafe for MarginOwnTradesQuery
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