pub struct ImportStatistics {
pub total_imports: usize,
pub processed_imports: usize,
pub skipped_imports: usize,
pub total_size: usize,
pub processing_time: Duration,
}Expand description
Statistics for import processing
Fields§
§total_imports: usize§processed_imports: usize§skipped_imports: usize§total_size: usize§processing_time: DurationTrait Implementations§
Source§impl Clone for ImportStatistics
impl Clone for ImportStatistics
Source§fn clone(&self) -> ImportStatistics
fn clone(&self) -> ImportStatistics
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 moreAuto Trait Implementations§
impl Freeze for ImportStatistics
impl RefUnwindSafe for ImportStatistics
impl Send for ImportStatistics
impl Sync for ImportStatistics
impl Unpin for ImportStatistics
impl UnwindSafe for ImportStatistics
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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