pub struct BackfillSummary {
pub imported: usize,
pub skipped: usize,
pub relinked: usize,
pub source_only_gaps: usize,
}Expand description
The outcome of one backfill pass (idempotent): how many records were imported, skipped (already
present by content-addressed id), re-linked (a back-dated mid-chain insert that re-parented), and
how many were source-only gaps that could not be appended (e.g. a source lacking authors with no
--blame fallback). Rendered by the command layer.
Fields§
§imported: usize§skipped: usize§relinked: usize§source_only_gaps: usizeTrait Implementations§
Source§impl Debug for BackfillSummary
impl Debug for BackfillSummary
Source§impl Default for BackfillSummary
impl Default for BackfillSummary
Source§fn default() -> BackfillSummary
fn default() -> BackfillSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for BackfillSummary
impl PartialEq for BackfillSummary
Source§fn eq(&self, other: &BackfillSummary) -> bool
fn eq(&self, other: &BackfillSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackfillSummary
Auto Trait Implementations§
impl Freeze for BackfillSummary
impl RefUnwindSafe for BackfillSummary
impl Send for BackfillSummary
impl Sync for BackfillSummary
impl Unpin for BackfillSummary
impl UnsafeUnpin for BackfillSummary
impl UnwindSafe for BackfillSummary
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