pub struct V2ExpandBackfillReport {
pub added_columns: Vec<String>,
pub created_tables: Vec<&'static str>,
pub legacy_event_attestations_backfilled: u64,
pub episode_summary_spans_backfilled: u64,
pub memory_summary_spans_backfilled: u64,
pub context_pack_advisories_backfilled: u64,
pub memory_salience_defaults_backfilled: u64,
}Expand description
Summary of one explicit schema v2 expand/backfill skeleton pass.
Fields§
§added_columns: Vec<String>Columns that were added during this invocation.
created_tables: Vec<&'static str>Tables that were created during this invocation.
legacy_event_attestations_backfilled: u64Legacy event rows marked as explicitly unattested.
episode_summary_spans_backfilled: u64Episode rows backfilled with span-level provenance placeholders.
memory_summary_spans_backfilled: u64Memory rows backfilled with span-level provenance placeholders.
context_pack_advisories_backfilled: u64Context pack rows backfilled with advisory posture.
memory_salience_defaults_backfilled: u64Memory rows backfilled with cross-session salience defaults.
Trait Implementations§
Source§impl Clone for V2ExpandBackfillReport
impl Clone for V2ExpandBackfillReport
Source§fn clone(&self) -> V2ExpandBackfillReport
fn clone(&self) -> V2ExpandBackfillReport
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 V2ExpandBackfillReport
impl Debug for V2ExpandBackfillReport
Source§impl PartialEq for V2ExpandBackfillReport
impl PartialEq for V2ExpandBackfillReport
Source§fn eq(&self, other: &V2ExpandBackfillReport) -> bool
fn eq(&self, other: &V2ExpandBackfillReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for V2ExpandBackfillReport
impl StructuralPartialEq for V2ExpandBackfillReport
Auto Trait Implementations§
impl Freeze for V2ExpandBackfillReport
impl RefUnwindSafe for V2ExpandBackfillReport
impl Send for V2ExpandBackfillReport
impl Sync for V2ExpandBackfillReport
impl Unpin for V2ExpandBackfillReport
impl UnsafeUnpin for V2ExpandBackfillReport
impl UnwindSafe for V2ExpandBackfillReport
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