pub struct LtTicker<'a> {
pub symbol: &'a str,
pub price_24h_pcnt: &'a str,
pub last_price: &'a str,
pub prev_price_24h: &'a str,
pub high_price_24h: &'a str,
pub low_price24h: &'a str,
}Fields§
§symbol: &'a strSymbol name.
price_24h_pcnt: &'a strMarket price change percentage in the past 24 hours.
last_price: &'a strThe last price.
prev_price_24h: &'a strMarket price 24 hours ago.
high_price_24h: &'a strHighest price in the past 24 hours.
low_price24h: &'a strLowest price in the past 24 hours.
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for LtTicker<'a>
impl<'de: 'a, 'a> Deserialize<'de> for LtTicker<'a>
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<'a> Freeze for LtTicker<'a>
impl<'a> RefUnwindSafe for LtTicker<'a>
impl<'a> Send for LtTicker<'a>
impl<'a> Sync for LtTicker<'a>
impl<'a> Unpin for LtTicker<'a>
impl<'a> UnwindSafe for LtTicker<'a>
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