struct ResearchAnalystConsensusOut {Show 13 fields
symbol: String,
highest: Option<f64>,
average: Option<f64>,
lowest: Option<f64>,
rating: Option<i32>,
total: Option<i32>,
update_time: Option<i64>,
update_time_str: Option<String>,
buy: Option<f64>,
hold: Option<f64>,
sell: Option<f64>,
strong_buy: Option<f64>,
underperform: Option<f64>,
}Fields§
§symbol: String§highest: Option<f64>§average: Option<f64>§lowest: Option<f64>§rating: Option<i32>§total: Option<i32>§update_time: Option<i64>§update_time_str: Option<String>§buy: Option<f64>§hold: Option<f64>§sell: Option<f64>§strong_buy: Option<f64>§underperform: Option<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResearchAnalystConsensusOut
impl RefUnwindSafe for ResearchAnalystConsensusOut
impl Send for ResearchAnalystConsensusOut
impl Sync for ResearchAnalystConsensusOut
impl Unpin for ResearchAnalystConsensusOut
impl UnsafeUnpin for ResearchAnalystConsensusOut
impl UnwindSafe for ResearchAnalystConsensusOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more