pub struct TradeStreamResponse {
pub e: Option<String>,
pub e_uppercase: Option<i64>,
pub t_uppercase: Option<i64>,
pub s: Option<String>,
pub t: Option<i64>,
pub p: Option<String>,
pub q: Option<String>,
pub m: Option<bool>,
}Fields§
§e: Option<String>eventType
e_uppercase: Option<i64>eventTime
t_uppercase: Option<i64>tradeTime
s: Option<String>symbol
t: Option<i64>tradeId
p: Option<String>fillPrice
q: Option<String>fillQty
m: Option<bool>isBuyerMaker
Implementations§
Source§impl TradeStreamResponse
impl TradeStreamResponse
pub fn new() -> TradeStreamResponse
Trait Implementations§
Source§impl Clone for TradeStreamResponse
impl Clone for TradeStreamResponse
Source§fn clone(&self) -> TradeStreamResponse
fn clone(&self) -> TradeStreamResponse
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 TradeStreamResponse
impl Debug for TradeStreamResponse
Source§impl Default for TradeStreamResponse
impl Default for TradeStreamResponse
Source§fn default() -> TradeStreamResponse
fn default() -> TradeStreamResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradeStreamResponse
impl<'de> Deserialize<'de> for TradeStreamResponse
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
Source§impl PartialEq for TradeStreamResponse
impl PartialEq for TradeStreamResponse
Source§impl Serialize for TradeStreamResponse
impl Serialize for TradeStreamResponse
impl StructuralPartialEq for TradeStreamResponse
Auto Trait Implementations§
impl Freeze for TradeStreamResponse
impl RefUnwindSafe for TradeStreamResponse
impl Send for TradeStreamResponse
impl Sync for TradeStreamResponse
impl Unpin for TradeStreamResponse
impl UnsafeUnpin for TradeStreamResponse
impl UnwindSafe for TradeStreamResponse
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