pub struct OwnTradesState {
pub commission: f64,
pub commission_asset: String,
pub id: u64,
pub is_best_match: bool,
pub is_buyer: bool,
pub is_maker: bool,
pub order_id: u64,
pub price: f64,
pub qty: f64,
pub symbol: String,
pub time: u128,
pub is_isolated: bool,
}Fields§
§commission: f64§commission_asset: String§id: u64§is_best_match: bool§is_buyer: bool§is_maker: bool§order_id: u64§price: f64§qty: f64§symbol: String§time: u128§is_isolated: boolTrait Implementations§
Source§impl Clone for OwnTradesState
impl Clone for OwnTradesState
Source§fn clone(&self) -> OwnTradesState
fn clone(&self) -> OwnTradesState
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 OwnTradesState
impl Debug for OwnTradesState
Source§impl<'de> Deserialize<'de> for OwnTradesState
impl<'de> Deserialize<'de> for OwnTradesState
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 OwnTradesState
impl RefUnwindSafe for OwnTradesState
impl Send for OwnTradesState
impl Sync for OwnTradesState
impl Unpin for OwnTradesState
impl UnwindSafe for OwnTradesState
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