pub struct RecommendationData {
pub period: String,
pub strong_buy: Option<i32>,
pub buy: Option<i32>,
pub hold: Option<i32>,
pub sell: Option<i32>,
pub strong_sell: Option<i32>,
}Fields§
§period: String§strong_buy: Option<i32>§buy: Option<i32>§hold: Option<i32>§sell: Option<i32>§strong_sell: Option<i32>Trait Implementations§
Source§impl Clone for RecommendationData
impl Clone for RecommendationData
Source§fn clone(&self) -> RecommendationData
fn clone(&self) -> RecommendationData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecommendationData
impl Debug for RecommendationData
Source§impl<'de> Deserialize<'de> for RecommendationData
impl<'de> Deserialize<'de> for RecommendationData
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 RecommendationData
impl RefUnwindSafe for RecommendationData
impl Send for RecommendationData
impl Sync for RecommendationData
impl Unpin for RecommendationData
impl UnsafeUnpin for RecommendationData
impl UnwindSafe for RecommendationData
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