pub struct CodeQualityMetrics {
pub cyclomatic_complexity_estimate: f32,
pub api_surface_size: usize,
pub dependency_count: usize,
pub modularity_score: f32,
}Fields§
§cyclomatic_complexity_estimate: f32§api_surface_size: usize§dependency_count: usize§modularity_score: f32Trait Implementations§
Source§impl Clone for CodeQualityMetrics
impl Clone for CodeQualityMetrics
Source§fn clone(&self) -> CodeQualityMetrics
fn clone(&self) -> CodeQualityMetrics
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 CodeQualityMetrics
impl RefUnwindSafe for CodeQualityMetrics
impl Send for CodeQualityMetrics
impl Sync for CodeQualityMetrics
impl Unpin for CodeQualityMetrics
impl UnwindSafe for CodeQualityMetrics
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