pub struct SourceReport {
pub label: String,
pub total: usize,
pub unique: usize,
}Expand description
What one source contributed.
Fields§
§label: StringHow the source was named on the command line.
total: usizeNames this source produced.
unique: usizeNames no other source produced. Non-zero means backfilling from any single source would have missed these rows.
Auto Trait Implementations§
impl Freeze for SourceReport
impl RefUnwindSafe for SourceReport
impl Send for SourceReport
impl Sync for SourceReport
impl Unpin for SourceReport
impl UnsafeUnpin for SourceReport
impl UnwindSafe for SourceReport
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