pub struct NormalizedScores {
pub doc_score: f64,
pub readme_score: f64,
pub import_score: f64,
pub path_score: f64,
pub test_link_score: f64,
pub churn_score: f64,
pub centrality_score: f64,
pub entrypoint_score: f64,
pub examples_score: f64,
}Expand description
Normalized score components after statistical normalization
Fields§
§doc_score: f64§readme_score: f64§import_score: f64§path_score: f64§test_link_score: f64§churn_score: f64§centrality_score: f64§entrypoint_score: f64§examples_score: f64Trait Implementations§
Source§impl Clone for NormalizedScores
impl Clone for NormalizedScores
Source§fn clone(&self) -> NormalizedScores
fn clone(&self) -> NormalizedScores
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 NormalizedScores
impl RefUnwindSafe for NormalizedScores
impl Send for NormalizedScores
impl Sync for NormalizedScores
impl Unpin for NormalizedScores
impl UnwindSafe for NormalizedScores
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