pub struct ExtractionReport {
pub files_processed: usize,
pub symbols_extracted: usize,
pub tokens_input: i64,
pub tokens_output: i64,
pub errors: Vec<String>,
}Fields§
§files_processed: usize§symbols_extracted: usize§tokens_input: i64§tokens_output: i64§errors: Vec<String>Trait Implementations§
Source§impl Debug for ExtractionReport
impl Debug for ExtractionReport
Auto Trait Implementations§
impl Freeze for ExtractionReport
impl RefUnwindSafe for ExtractionReport
impl Send for ExtractionReport
impl Sync for ExtractionReport
impl Unpin for ExtractionReport
impl UnsafeUnpin for ExtractionReport
impl UnwindSafe for ExtractionReport
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