pub struct AnalystGrade {
pub symbol: String,
pub published_date: String,
pub grading_company: String,
pub new_grade: String,
pub previous_grade: Option<String>,
pub grade_action: String,
}Expand description
Analyst recommendation/grade
Fields§
§symbol: String§published_date: String§grading_company: String§new_grade: String§previous_grade: Option<String>§grade_action: StringTrait Implementations§
Source§impl Clone for AnalystGrade
impl Clone for AnalystGrade
Source§fn clone(&self) -> AnalystGrade
fn clone(&self) -> AnalystGrade
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 AnalystGrade
impl Debug for AnalystGrade
Source§impl<'de> Deserialize<'de> for AnalystGrade
impl<'de> Deserialize<'de> for AnalystGrade
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 AnalystGrade
impl PartialEq for AnalystGrade
Source§impl Serialize for AnalystGrade
impl Serialize for AnalystGrade
impl StructuralPartialEq for AnalystGrade
Auto Trait Implementations§
impl Freeze for AnalystGrade
impl RefUnwindSafe for AnalystGrade
impl Send for AnalystGrade
impl Sync for AnalystGrade
impl Unpin for AnalystGrade
impl UnwindSafe for AnalystGrade
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