pub struct IngestionReport {
pub files_found: usize,
pub files_processed: usize,
pub errors: Vec<String>,
}Fields§
§files_found: usize§files_processed: usize§errors: Vec<String>Implementations§
Source§impl IngestionReport
impl IngestionReport
pub fn new() -> Self
pub fn has_errors(&self) -> bool
pub fn successful_count(&self) -> usize
pub fn failed_count(&self) -> usize
Trait Implementations§
Source§impl Clone for IngestionReport
impl Clone for IngestionReport
Source§fn clone(&self) -> IngestionReport
fn clone(&self) -> IngestionReport
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 IngestionReport
impl Debug for IngestionReport
Source§impl Default for IngestionReport
impl Default for IngestionReport
Source§fn default() -> IngestionReport
fn default() -> IngestionReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IngestionReport
impl RefUnwindSafe for IngestionReport
impl Send for IngestionReport
impl Sync for IngestionReport
impl Unpin for IngestionReport
impl UnwindSafe for IngestionReport
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