pub struct LanguageSummary {
pub language: Language,
pub files: u64,
pub total_physical_lines: u64,
pub code_lines: u64,
pub comment_lines: u64,
pub blank_lines: u64,
pub mixed_lines_separate: u64,
pub functions: u64,
pub classes: u64,
pub variables: u64,
pub imports: u64,
}Fields§
§language: Language§files: u64§total_physical_lines: u64§code_lines: u64§comment_lines: u64§blank_lines: u64§mixed_lines_separate: u64§functions: u64§classes: u64§variables: u64§imports: u64Trait Implementations§
Source§impl Clone for LanguageSummary
impl Clone for LanguageSummary
Source§fn clone(&self) -> LanguageSummary
fn clone(&self) -> LanguageSummary
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 LanguageSummary
impl Debug for LanguageSummary
Source§impl<'de> Deserialize<'de> for LanguageSummary
impl<'de> Deserialize<'de> for LanguageSummary
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 LanguageSummary
impl RefUnwindSafe for LanguageSummary
impl Send for LanguageSummary
impl Sync for LanguageSummary
impl Unpin for LanguageSummary
impl UnsafeUnpin for LanguageSummary
impl UnwindSafe for LanguageSummary
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