pub struct ScoreComponents {
pub correctness: f64,
pub performance: f64,
pub maintainability: f64,
pub safety: f64,
pub idiomaticity: f64,
}Expand description
Individual score components
Fields§
§correctness: f64§performance: f64§maintainability: f64§safety: f64§idiomaticity: f64Trait Implementations§
Source§impl Clone for ScoreComponents
impl Clone for ScoreComponents
Source§fn clone(&self) -> ScoreComponents
fn clone(&self) -> ScoreComponents
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 ScoreComponents
impl RefUnwindSafe for ScoreComponents
impl Send for ScoreComponents
impl Sync for ScoreComponents
impl Unpin for ScoreComponents
impl UnwindSafe for ScoreComponents
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