pub struct ProjectSummary {
pub project_name: String,
pub total_files: usize,
pub total_lines: usize,
pub total_code_lines: usize,
pub total_comment_lines: usize,
pub total_blank_lines: usize,
pub total_size_bytes: u64,
pub language_count: usize,
pub primary_language: Option<String>,
pub overall_complexity_ratio: f64,
pub overall_documentation_ratio: f64,
}Fields§
§project_name: String§total_files: usize§total_lines: usize§total_code_lines: usize§total_comment_lines: usize§total_blank_lines: usize§total_size_bytes: u64§language_count: usize§primary_language: Option<String>§overall_complexity_ratio: f64§overall_documentation_ratio: f64Trait Implementations§
Source§impl Clone for ProjectSummary
impl Clone for ProjectSummary
Source§fn clone(&self) -> ProjectSummary
fn clone(&self) -> ProjectSummary
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 ProjectSummary
impl Debug for ProjectSummary
Source§impl<'de> Deserialize<'de> for ProjectSummary
impl<'de> Deserialize<'de> for ProjectSummary
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 ProjectSummary
impl RefUnwindSafe for ProjectSummary
impl Send for ProjectSummary
impl Sync for ProjectSummary
impl Unpin for ProjectSummary
impl UnsafeUnpin for ProjectSummary
impl UnwindSafe for ProjectSummary
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