pub struct KgImportCounts {
pub attempted: usize,
pub added: usize,
pub skipped: usize,
}Expand description
Aggregate counts reported by a knowledge-graph import run.
Fields§
§attempted: usizeTriples read from the source.
added: usizeSuccessfully added (including invalidations for historical ranges).
skipped: usizeNot added — transport or store failure per-triple.
Trait Implementations§
Source§impl Clone for KgImportCounts
impl Clone for KgImportCounts
Source§fn clone(&self) -> KgImportCounts
fn clone(&self) -> KgImportCounts
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 moreimpl Copy for KgImportCounts
Source§impl Debug for KgImportCounts
impl Debug for KgImportCounts
Source§impl Default for KgImportCounts
impl Default for KgImportCounts
Source§fn default() -> KgImportCounts
fn default() -> KgImportCounts
Returns the “default value” for a type. Read more
impl Eq for KgImportCounts
Source§impl PartialEq for KgImportCounts
impl PartialEq for KgImportCounts
impl StructuralPartialEq for KgImportCounts
Auto Trait Implementations§
impl Freeze for KgImportCounts
impl RefUnwindSafe for KgImportCounts
impl Send for KgImportCounts
impl Sync for KgImportCounts
impl Unpin for KgImportCounts
impl UnsafeUnpin for KgImportCounts
impl UnwindSafe for KgImportCounts
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