Struct combiner::Statistics
source · pub struct Statistics {
pub files_processed: usize,
pub files_skipped: usize,
pub directories_visited: usize,
pub total_tokens: usize,
pub max_tokens: usize,
pub max_tokens_file: String,
pub processing_time: Duration,
pub output_file: String,
}Expand description
Represents the statistics collected during the file combining process.
Fields§
§files_processed: usize§files_skipped: usize§directories_visited: usize§total_tokens: usize§max_tokens: usize§max_tokens_file: String§processing_time: Duration§output_file: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Statistics
impl RefUnwindSafe for Statistics
impl Send for Statistics
impl Sync for Statistics
impl Unpin for Statistics
impl UnwindSafe for Statistics
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more