pub struct QuoteFiftyTwoWeek {
pub low: Option<String>,
pub high: Option<String>,
pub low_change: Option<String>,
pub high_change: Option<String>,
pub low_change_percent: Option<String>,
pub high_change_percent: Option<String>,
pub range: Option<String>,
}Expand description
QuoteFiftyTwoWeek : Collection of 52-week metrics
Fields§
§low: Option<String>52-week low price
high: Option<String>52-week high price
low_change: Option<String>Current price - 52-week low
high_change: Option<String>Current price - 52-week high
low_change_percent: Option<String>Percentage change from 52-week low
high_change_percent: Option<String>Percentage change from 52-week high
range: Option<String>Range between 52-week low and high
Implementations§
Source§impl QuoteFiftyTwoWeek
impl QuoteFiftyTwoWeek
Sourcepub fn new() -> QuoteFiftyTwoWeek
pub fn new() -> QuoteFiftyTwoWeek
Collection of 52-week metrics
Trait Implementations§
Source§impl Clone for QuoteFiftyTwoWeek
impl Clone for QuoteFiftyTwoWeek
Source§fn clone(&self) -> QuoteFiftyTwoWeek
fn clone(&self) -> QuoteFiftyTwoWeek
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 QuoteFiftyTwoWeek
impl Debug for QuoteFiftyTwoWeek
Source§impl Default for QuoteFiftyTwoWeek
impl Default for QuoteFiftyTwoWeek
Source§fn default() -> QuoteFiftyTwoWeek
fn default() -> QuoteFiftyTwoWeek
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QuoteFiftyTwoWeek
impl<'de> Deserialize<'de> for QuoteFiftyTwoWeek
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
Source§impl PartialEq for QuoteFiftyTwoWeek
impl PartialEq for QuoteFiftyTwoWeek
Source§impl Serialize for QuoteFiftyTwoWeek
impl Serialize for QuoteFiftyTwoWeek
impl StructuralPartialEq for QuoteFiftyTwoWeek
Auto Trait Implementations§
impl Freeze for QuoteFiftyTwoWeek
impl RefUnwindSafe for QuoteFiftyTwoWeek
impl Send for QuoteFiftyTwoWeek
impl Sync for QuoteFiftyTwoWeek
impl Unpin for QuoteFiftyTwoWeek
impl UnwindSafe for QuoteFiftyTwoWeek
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