pub struct BackfillReport {
pub files_scanned: u64,
pub lines_ingested: u64,
pub lines_skipped_by_offset: u64,
pub sessions_enriched: u64,
pub parse_errors: Vec<BackfillParseError>,
}Fields§
§files_scanned: u64§lines_ingested: u64§lines_skipped_by_offset: u64§sessions_enriched: u64§parse_errors: Vec<BackfillParseError>Trait Implementations§
Source§impl Clone for BackfillReport
impl Clone for BackfillReport
Source§fn clone(&self) -> BackfillReport
fn clone(&self) -> BackfillReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackfillReport
impl Debug for BackfillReport
Source§impl Default for BackfillReport
impl Default for BackfillReport
Source§fn default() -> BackfillReport
fn default() -> BackfillReport
Returns the “default value” for a type. Read more
impl Eq for BackfillReport
Source§impl PartialEq for BackfillReport
impl PartialEq for BackfillReport
Source§fn eq(&self, other: &BackfillReport) -> bool
fn eq(&self, other: &BackfillReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackfillReport
Auto Trait Implementations§
impl Freeze for BackfillReport
impl RefUnwindSafe for BackfillReport
impl Send for BackfillReport
impl Sync for BackfillReport
impl Unpin for BackfillReport
impl UnsafeUnpin for BackfillReport
impl UnwindSafe for BackfillReport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.