pub struct QualificationScore {
pub criterion_name: String,
pub score: f64,
pub passed: bool,
pub comments: Option<String>,
}Expand description
Score for a single qualification criterion.
Fields§
§criterion_name: StringCriterion name
score: f64Score achieved (0.0 to 100.0)
passed: boolWhether the criterion was passed
comments: Option<String>Evaluator comments
Trait Implementations§
Source§impl Clone for QualificationScore
impl Clone for QualificationScore
Source§fn clone(&self) -> QualificationScore
fn clone(&self) -> QualificationScore
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 QualificationScore
impl Debug for QualificationScore
Source§impl<'de> Deserialize<'de> for QualificationScore
impl<'de> Deserialize<'de> for QualificationScore
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 QualificationScore
impl RefUnwindSafe for QualificationScore
impl Send for QualificationScore
impl Sync for QualificationScore
impl Unpin for QualificationScore
impl UnwindSafe for QualificationScore
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