pub struct BnBookTickerStream {
pub update_id: u64,
pub symbol: CryptoSymbol,
pub best_bid_price: Decimal,
pub best_bid_qty: Decimal,
pub best_ask_price: Decimal,
pub best_ask_qty: Decimal,
}Fields§
§update_id: u64§symbol: CryptoSymbol§best_bid_price: Decimal§best_bid_qty: Decimal§best_ask_price: Decimal§best_ask_qty: DecimalTrait Implementations§
Source§impl Clone for BnBookTickerStream
impl Clone for BnBookTickerStream
Source§fn clone(&self) -> BnBookTickerStream
fn clone(&self) -> BnBookTickerStream
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 BnBookTickerStream
impl Debug for BnBookTickerStream
Source§impl<'de> Deserialize<'de> for BnBookTickerStream
impl<'de> Deserialize<'de> for BnBookTickerStream
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 BnBookTickerStream
impl RefUnwindSafe for BnBookTickerStream
impl Send for BnBookTickerStream
impl Sync for BnBookTickerStream
impl Unpin for BnBookTickerStream
impl UnwindSafe for BnBookTickerStream
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