pub struct AlphaVantageQuote {
pub symbol: String,
pub price: Decimal,
pub volume: i64,
pub change: Decimal,
pub change_percent: Decimal,
}Fields§
§symbol: String§price: Decimal§volume: i64§change: Decimal§change_percent: DecimalTrait Implementations§
Source§impl Clone for AlphaVantageQuote
impl Clone for AlphaVantageQuote
Source§fn clone(&self) -> AlphaVantageQuote
fn clone(&self) -> AlphaVantageQuote
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 AlphaVantageQuote
impl Debug for AlphaVantageQuote
Source§impl<'de> Deserialize<'de> for AlphaVantageQuote
impl<'de> Deserialize<'de> for AlphaVantageQuote
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 AlphaVantageQuote
impl RefUnwindSafe for AlphaVantageQuote
impl Send for AlphaVantageQuote
impl Sync for AlphaVantageQuote
impl Unpin for AlphaVantageQuote
impl UnwindSafe for AlphaVantageQuote
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