pub struct FileStats {
pub keys_count: IndexMap<String, usize>,
pub line_count: usize,
pub bad_lines: Vec<usize>,
pub keys_types_count: IndexMap<String, usize>,
pub empty_lines: Vec<usize>,
}Fields
keys_count: IndexMap<String, usize>line_count: usizebad_lines: Vec<usize>keys_types_count: IndexMap<String, usize>empty_lines: Vec<usize>Implementations
Trait Implementations
impl StructuralPartialEq for FileStats
Auto Trait Implementations
impl RefUnwindSafe for FileStats
impl Send for FileStats
impl Sync for FileStats
impl Unpin for FileStats
impl UnwindSafe for FileStats
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more