pub struct ProcessingStats {
pub file_count: usize,
pub line_count: usize,
pub char_count: usize,
pub estimated_tokens: usize,
}
Expand description
Statistics about processed files
Fields§
§file_count: usize
§line_count: usize
§char_count: usize
§estimated_tokens: usize
Auto Trait Implementations§
impl Freeze for ProcessingStats
impl RefUnwindSafe for ProcessingStats
impl Send for ProcessingStats
impl Sync for ProcessingStats
impl Unpin for ProcessingStats
impl UnwindSafe for ProcessingStats
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