pub struct AggregateTradeStreamResponse {
pub e: Option<String>,
pub e_uppercase: Option<i64>,
pub t_uppercase: Option<i64>,
pub a: Option<i64>,
pub f: Option<i64>,
pub l: Option<i64>,
pub m: Option<bool>,
pub p: Option<String>,
pub q: Option<String>,
pub s: Option<String>,
}Fields§
§e: Option<String>Event type
e_uppercase: Option<i64>Event time (ms)
t_uppercase: Option<i64>Trade time (ms)
a: Option<i64>Aggregated trade ID
f: Option<i64>First trade ID in the aggregation
l: Option<i64>Last trade ID in the aggregation
m: Option<bool>Is the buyer the market maker
p: Option<String>Price
q: Option<String>Quantity
s: Option<String>Symbol
Implementations§
Source§impl AggregateTradeStreamResponse
impl AggregateTradeStreamResponse
pub fn new() -> AggregateTradeStreamResponse
Trait Implementations§
Source§impl Clone for AggregateTradeStreamResponse
impl Clone for AggregateTradeStreamResponse
Source§fn clone(&self) -> AggregateTradeStreamResponse
fn clone(&self) -> AggregateTradeStreamResponse
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 AggregateTradeStreamResponse
impl Debug for AggregateTradeStreamResponse
Source§impl Default for AggregateTradeStreamResponse
impl Default for AggregateTradeStreamResponse
Source§fn default() -> AggregateTradeStreamResponse
fn default() -> AggregateTradeStreamResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AggregateTradeStreamResponse
impl<'de> Deserialize<'de> for AggregateTradeStreamResponse
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
impl StructuralPartialEq for AggregateTradeStreamResponse
Auto Trait Implementations§
impl Freeze for AggregateTradeStreamResponse
impl RefUnwindSafe for AggregateTradeStreamResponse
impl Send for AggregateTradeStreamResponse
impl Sync for AggregateTradeStreamResponse
impl Unpin for AggregateTradeStreamResponse
impl UnsafeUnpin for AggregateTradeStreamResponse
impl UnwindSafe for AggregateTradeStreamResponse
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