pub struct FileMetrics {
pub path: PathBuf,
pub language: String,
pub metrics: ComplexityMetrics,
pub functions: Vec<FunctionMetrics>,
pub classes: u32,
pub imports: u32,
}Expand description
Metrics for a single file
Fields§
§path: PathBufFile path
language: StringLanguage
metrics: ComplexityMetricsAggregate metrics for the file
functions: Vec<FunctionMetrics>Per-function metrics
classes: u32Number of classes/structs
imports: u32Number of imports/includes
Implementations§
Source§impl FileMetrics
impl FileMetrics
pub fn new(path: PathBuf, language: &str) -> Self
Sourcepub fn most_complex_function(&self) -> Option<&FunctionMetrics>
pub fn most_complex_function(&self) -> Option<&FunctionMetrics>
Get the most complex function
Sourcepub fn average_cyclomatic(&self) -> f64
pub fn average_cyclomatic(&self) -> f64
Calculate average cyclomatic complexity
Sourcepub fn functions_above_threshold(&self, threshold: u32) -> Vec<&FunctionMetrics>
pub fn functions_above_threshold(&self, threshold: u32) -> Vec<&FunctionMetrics>
Get functions exceeding a complexity threshold
Trait Implementations§
Source§impl Clone for FileMetrics
impl Clone for FileMetrics
Source§fn clone(&self) -> FileMetrics
fn clone(&self) -> FileMetrics
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 FileMetrics
impl Debug for FileMetrics
Source§impl<'de> Deserialize<'de> for FileMetrics
impl<'de> Deserialize<'de> for FileMetrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileMetrics
impl RefUnwindSafe for FileMetrics
impl Send for FileMetrics
impl Sync for FileMetrics
impl Unpin for FileMetrics
impl UnsafeUnpin for FileMetrics
impl UnwindSafe for FileMetrics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more