pub struct EffectiveCounts {
pub code_lines: u64,
pub comment_lines: u64,
pub blank_lines: u64,
pub mixed_lines_separate: u64,
}Fields§
§code_lines: u64§comment_lines: u64§blank_lines: u64§mixed_lines_separate: u64Trait Implementations§
Source§impl Clone for EffectiveCounts
impl Clone for EffectiveCounts
Source§fn clone(&self) -> EffectiveCounts
fn clone(&self) -> EffectiveCounts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectiveCounts
impl Debug for EffectiveCounts
Source§impl Default for EffectiveCounts
impl Default for EffectiveCounts
Source§fn default() -> EffectiveCounts
fn default() -> EffectiveCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EffectiveCounts
impl<'de> Deserialize<'de> for EffectiveCounts
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 EffectiveCounts
impl RefUnwindSafe for EffectiveCounts
impl Send for EffectiveCounts
impl Sync for EffectiveCounts
impl Unpin for EffectiveCounts
impl UnsafeUnpin for EffectiveCounts
impl UnwindSafe for EffectiveCounts
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