pub struct ExtractionStats {
pub objects_processed: usize,
pub dependencies_found: usize,
pub relationships_found: usize,
pub processing_time_ms: f64,
pub memory_used_mb: f64,
}Expand description
Statistics about the extraction process
Fields§
§objects_processed: usize§dependencies_found: usize§relationships_found: usize§processing_time_ms: f64§memory_used_mb: f64Trait Implementations§
Source§impl Clone for ExtractionStats
impl Clone for ExtractionStats
Source§fn clone(&self) -> ExtractionStats
fn clone(&self) -> ExtractionStats
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 ExtractionStats
impl Debug for ExtractionStats
Auto Trait Implementations§
impl Freeze for ExtractionStats
impl RefUnwindSafe for ExtractionStats
impl Send for ExtractionStats
impl Sync for ExtractionStats
impl Unpin for ExtractionStats
impl UnwindSafe for ExtractionStats
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