pub struct Mover {
pub change: f64,
pub description: String,
pub direction: String,
pub last: f64,
pub symbol: String,
pub total_volume: i64,
}Expand description
Individual response item returned by the get_movers() method.
Fields§
§change: f64§description: String§direction: String§last: f64§symbol: String§total_volume: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Mover
impl<'de> Deserialize<'de> for Mover
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 Mover
impl RefUnwindSafe for Mover
impl Send for Mover
impl Sync for Mover
impl Unpin for Mover
impl UnwindSafe for Mover
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