Enum barter_data::exchange::bitfinex::message::BitfinexPayload
source · pub enum BitfinexPayload {
Heartbeat,
Trade(BitfinexTrade),
}Expand description
Bitfinex market data variants associated with an
active Subscription.
See BitfinexMessage for full raw payload examples.
Variants§
Heartbeat
Trade(BitfinexTrade)
Trait Implementations§
source§impl Clone for BitfinexPayload
impl Clone for BitfinexPayload
source§fn clone(&self) -> BitfinexPayload
fn clone(&self) -> BitfinexPayload
Returns a copy 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 BitfinexPayload
impl Debug for BitfinexPayload
source§impl PartialEq<BitfinexPayload> for BitfinexPayload
impl PartialEq<BitfinexPayload> for BitfinexPayload
source§fn eq(&self, other: &BitfinexPayload) -> bool
fn eq(&self, other: &BitfinexPayload) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<BitfinexPayload> for BitfinexPayload
impl PartialOrd<BitfinexPayload> for BitfinexPayload
source§fn partial_cmp(&self, other: &BitfinexPayload) -> Option<Ordering>
fn partial_cmp(&self, other: &BitfinexPayload) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more