Struct binance::rest_model::OwnTradesState
source · [−]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: f64commission_asset: Stringid: u64is_best_match: boolis_buyer: boolis_maker: boolorder_id: u64price: f64qty: f64symbol: Stringtime: u128is_isolated: boolTrait Implementations
sourceimpl Clone for OwnTradesState
impl Clone for OwnTradesState
sourcefn clone(&self) -> OwnTradesState
fn clone(&self) -> OwnTradesState
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 OwnTradesState
impl Debug for OwnTradesState
sourceimpl<'de> Deserialize<'de> for OwnTradesState
impl<'de> Deserialize<'de> for OwnTradesState
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 OwnTradesState
impl Serialize for OwnTradesState
Auto Trait Implementations
impl RefUnwindSafe for OwnTradesState
impl Send for OwnTradesState
impl Sync for OwnTradesState
impl Unpin for OwnTradesState
impl UnwindSafe for OwnTradesState
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