pub struct BitfinexTickerInfo {
pub bid: Decimal,
pub bid_size: Decimal,
pub ask: Decimal,
pub ask_size: Decimal,
pub daily_change: Decimal,
pub daily_change_relative: Decimal,
pub last_price: Decimal,
pub volume: Decimal,
pub high: Decimal,
pub low: Decimal,
}
Fields§
§bid: Decimal
§bid_size: Decimal
§ask: Decimal
§ask_size: Decimal
§daily_change: Decimal
§daily_change_relative: Decimal
§last_price: Decimal
§volume: Decimal
§high: Decimal
§low: Decimal
Trait Implementations§
Source§impl Clone for BitfinexTickerInfo
impl Clone for BitfinexTickerInfo
Source§fn clone(&self) -> BitfinexTickerInfo
fn clone(&self) -> BitfinexTickerInfo
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 BitfinexTickerInfo
impl Debug for BitfinexTickerInfo
Source§impl<'de> Deserialize<'de> for BitfinexTickerInfo
impl<'de> Deserialize<'de> for BitfinexTickerInfo
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 BitfinexTickerInfo
impl RefUnwindSafe for BitfinexTickerInfo
impl Send for BitfinexTickerInfo
impl Sync for BitfinexTickerInfo
impl Unpin for BitfinexTickerInfo
impl UnwindSafe for BitfinexTickerInfo
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