pub struct MetricScore {
pub id: String,
pub raw_score: f64,
pub weight: f64,
pub weighted_score: f64,
}Expand description
Score details for a single metric
Fields§
§id: String§raw_score: f64§weight: f64§weighted_score: f64Trait Implementations§
Source§impl Clone for MetricScore
impl Clone for MetricScore
Source§fn clone(&self) -> MetricScore
fn clone(&self) -> MetricScore
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 moreAuto Trait Implementations§
impl Freeze for MetricScore
impl RefUnwindSafe for MetricScore
impl Send for MetricScore
impl Sync for MetricScore
impl Unpin for MetricScore
impl UnwindSafe for MetricScore
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