pub struct RawScoreComponents {
pub doc_raw: f64,
pub readme_raw: f64,
pub import_degree_in: usize,
pub import_degree_out: usize,
pub path_depth: usize,
pub test_links_found: usize,
pub churn_commits: usize,
pub centrality_raw: f64,
pub is_entrypoint: bool,
pub examples_count: usize,
}Expand description
Raw score components before normalization
Fields§
§doc_raw: f64§readme_raw: f64§import_degree_in: usize§import_degree_out: usize§path_depth: usize§test_links_found: usize§churn_commits: usize§centrality_raw: f64§is_entrypoint: bool§examples_count: usizeTrait Implementations§
Source§impl Clone for RawScoreComponents
impl Clone for RawScoreComponents
Source§fn clone(&self) -> RawScoreComponents
fn clone(&self) -> RawScoreComponents
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 RawScoreComponents
impl RefUnwindSafe for RawScoreComponents
impl Send for RawScoreComponents
impl Sync for RawScoreComponents
impl Unpin for RawScoreComponents
impl UnwindSafe for RawScoreComponents
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