pub struct QualityPoint {
pub period: String,
pub avg_score: f64,
pub count: usize,
}Expand description
Quality score over time.
Fields§
§period: String§avg_score: f64§count: usizeTrait Implementations§
Source§impl Clone for QualityPoint
impl Clone for QualityPoint
Source§fn clone(&self) -> QualityPoint
fn clone(&self) -> QualityPoint
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 QualityPoint
impl Debug for QualityPoint
Auto Trait Implementations§
impl Freeze for QualityPoint
impl RefUnwindSafe for QualityPoint
impl Send for QualityPoint
impl Sync for QualityPoint
impl Unpin for QualityPoint
impl UnsafeUnpin for QualityPoint
impl UnwindSafe for QualityPoint
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