pub struct MarketMover {
pub symbol: String,
pub name: String,
pub price: String,
pub change: String,
pub percent_change: String,
}Fields§
§symbol: String§name: String§price: String§change: String§percent_change: StringTrait Implementations§
Source§impl Clone for MarketMover
impl Clone for MarketMover
Source§fn clone(&self) -> MarketMover
fn clone(&self) -> MarketMover
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 MarketMover
impl Debug for MarketMover
Source§impl<'de> Deserialize<'de> for MarketMover
impl<'de> Deserialize<'de> for MarketMover
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 MarketMover
impl RefUnwindSafe for MarketMover
impl Send for MarketMover
impl Sync for MarketMover
impl Unpin for MarketMover
impl UnsafeUnpin for MarketMover
impl UnwindSafe for MarketMover
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