pub struct ExciseReport {
pub source_ref: String,
pub nodes_excised: u64,
pub edges_excised: u64,
pub projections_invalidated: u64,
}Expand description
Phase 9 Pack B excise report (AC-028a/b/c). Counts are post-excise
totals; projections_invalidated reports the shadow-row invalidation
total (FTS5 + vec0 + projection terminal) for the excised source.
Fields§
§source_ref: String§nodes_excised: u64§edges_excised: u64§projections_invalidated: u64Trait Implementations§
Source§impl Clone for ExciseReport
impl Clone for ExciseReport
Source§fn clone(&self) -> ExciseReport
fn clone(&self) -> ExciseReport
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 ExciseReport
impl Debug for ExciseReport
impl Eq for ExciseReport
Source§impl PartialEq for ExciseReport
impl PartialEq for ExciseReport
impl StructuralPartialEq for ExciseReport
Auto Trait Implementations§
impl Freeze for ExciseReport
impl RefUnwindSafe for ExciseReport
impl Send for ExciseReport
impl Sync for ExciseReport
impl Unpin for ExciseReport
impl UnsafeUnpin for ExciseReport
impl UnwindSafe for ExciseReport
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