pub struct AnalystPriceTargets {
pub average: Option<f64>,
pub high: Option<f64>,
pub low: Option<f64>,
pub median: Option<f64>,
pub one_year: Option<f64>,
pub one_year_delta_percent: Option<f64>,
}Fields§
§average: Option<f64>§high: Option<f64>§low: Option<f64>§median: Option<f64>§one_year: Option<f64>§one_year_delta_percent: Option<f64>Trait Implementations§
Source§impl Clone for AnalystPriceTargets
impl Clone for AnalystPriceTargets
Source§fn clone(&self) -> AnalystPriceTargets
fn clone(&self) -> AnalystPriceTargets
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 AnalystPriceTargets
impl Debug for AnalystPriceTargets
Source§impl Default for AnalystPriceTargets
impl Default for AnalystPriceTargets
Source§fn default() -> AnalystPriceTargets
fn default() -> AnalystPriceTargets
Returns the “default value” for a type. Read more
Source§impl PartialEq for AnalystPriceTargets
impl PartialEq for AnalystPriceTargets
impl StructuralPartialEq for AnalystPriceTargets
Auto Trait Implementations§
impl Freeze for AnalystPriceTargets
impl RefUnwindSafe for AnalystPriceTargets
impl Send for AnalystPriceTargets
impl Sync for AnalystPriceTargets
impl Unpin for AnalystPriceTargets
impl UnsafeUnpin for AnalystPriceTargets
impl UnwindSafe for AnalystPriceTargets
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