pub enum InstitutionRecommend {
Unknown,
StrongBuy,
Buy,
Hold,
Sell,
StrongSell,
Underperform,
NoOpinion,
}Expand description
Institutional analyst recommendation
Variants§
Unknown
Unknown
StrongBuy
Strong buy
Buy
Buy
Hold
Hold
Sell
Sell
StrongSell
Strong sell
Underperform
Underperform
NoOpinion
No opinion
Trait Implementations§
Source§impl Clone for InstitutionRecommend
impl Clone for InstitutionRecommend
Source§fn clone(&self) -> InstitutionRecommend
fn clone(&self) -> InstitutionRecommend
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 InstitutionRecommend
impl Debug for InstitutionRecommend
Source§impl Default for InstitutionRecommend
impl Default for InstitutionRecommend
Source§impl<'de> Deserialize<'de> for InstitutionRecommend
impl<'de> Deserialize<'de> for InstitutionRecommend
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for InstitutionRecommend
impl Display for InstitutionRecommend
Source§impl FromStr for InstitutionRecommend
impl FromStr for InstitutionRecommend
Source§impl Hash for InstitutionRecommend
impl Hash for InstitutionRecommend
Source§impl PartialEq for InstitutionRecommend
impl PartialEq for InstitutionRecommend
Source§impl Serialize for InstitutionRecommend
impl Serialize for InstitutionRecommend
Source§impl TryFrom<&str> for InstitutionRecommend
impl TryFrom<&str> for InstitutionRecommend
impl Copy for InstitutionRecommend
impl Eq for InstitutionRecommend
impl StructuralPartialEq for InstitutionRecommend
Auto Trait Implementations§
impl Freeze for InstitutionRecommend
impl RefUnwindSafe for InstitutionRecommend
impl Send for InstitutionRecommend
impl Sync for InstitutionRecommend
impl Unpin for InstitutionRecommend
impl UnsafeUnpin for InstitutionRecommend
impl UnwindSafe for InstitutionRecommend
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§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