pub struct FileStatRow {
pub path: String,
pub module: String,
pub lang: String,
pub code: usize,
pub comments: usize,
pub blanks: usize,
pub lines: usize,
pub bytes: usize,
pub tokens: usize,
pub doc_pct: Option<f64>,
pub bytes_per_line: Option<f64>,
pub depth: usize,
}Fields§
§path: String§module: String§lang: String§code: usize§comments: usize§blanks: usize§lines: usize§bytes: usize§tokens: usize§doc_pct: Option<f64>§bytes_per_line: Option<f64>§depth: usizeTrait Implementations§
Source§impl Clone for FileStatRow
impl Clone for FileStatRow
Source§fn clone(&self) -> FileStatRow
fn clone(&self) -> FileStatRow
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 FileStatRow
impl Debug for FileStatRow
Source§impl<'de> Deserialize<'de> for FileStatRow
impl<'de> Deserialize<'de> for FileStatRow
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 FileStatRow
impl RefUnwindSafe for FileStatRow
impl Send for FileStatRow
impl Sync for FileStatRow
impl Unpin for FileStatRow
impl UnwindSafe for FileStatRow
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