pub struct BackfillReport {
pub from: u64,
pub to: u64,
pub blocks_scanned: u64,
pub records_written: usize,
pub slots_resolved: usize,
pub unresolved: usize,
pub created_at: Option<u64>,
pub stopped: BackfillStop,
}Expand description
What one Archive::backfill call did.
Fields§
§from: u64Watch start before this call.
to: u64Watch start after this call (the lowest block now covered).
blocks_scanned: u64Blocks read and verified.
records_written: usizeSlot records written.
slots_resolved: usizeSlots whose previously unknown pre-value was found in this call.
unresolved: usizeSlots whose pre-value is still unknown after this call.
created_at: Option<u64>Creation block, if known after this call.
stopped: BackfillStopWhy the call returned.
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 moreAuto 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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more