Struct rust_code_analysis::loc::Stats [−][src]
The Loc metric suite.
Implementations
impl Stats[src]
pub fn merge(&mut self, other: &Stats)[src]
Merges a second Loc metric suite into the first one
pub fn sloc(&self) -> f64[src]
The Sloc metric.
Counts the number of lines in a scope
pub fn ploc(&self) -> f64[src]
The Ploc metric.
Counts the number of instruction lines in a scope
pub fn lloc(&self) -> f64[src]
The Lloc metric.
Counts the number of statements in a scope
pub fn cloc(&self) -> f64[src]
The Cloc metric.
Counts the number of comments in a scope
pub fn blank(&self) -> f64[src]
The Blank metric.
Counts the number of blank lines in a scope
Trait Implementations
impl Clone for Stats[src]
impl Debug for Stats[src]
impl Default for Stats[src]
impl Display for Stats[src]
impl Serialize for Stats[src]
Auto Trait Implementations
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,