pub struct IntegrityReport {
pub orphaned_child_chunks: u64,
pub orphaned_kw_records: u64,
pub orphaned_embedding_records: u64,
pub orphaned_files: u64,
}Expand description
Catalog integrity report (RFC-018 §16 test 7).
Fields§
§orphaned_child_chunks: u64Chunks whose parent chunk no longer exists.
orphaned_kw_records: u64Keyword index records without a matching chunk.
orphaned_embedding_records: u64Embedding records without a matching chunk.
orphaned_files: u64Files without a parent source.
Implementations§
Trait Implementations§
Source§impl Debug for IntegrityReport
impl Debug for IntegrityReport
Source§impl Default for IntegrityReport
impl Default for IntegrityReport
Source§fn default() -> IntegrityReport
fn default() -> IntegrityReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IntegrityReport
impl RefUnwindSafe for IntegrityReport
impl Send for IntegrityReport
impl Sync for IntegrityReport
impl Unpin for IntegrityReport
impl UnsafeUnpin for IntegrityReport
impl UnwindSafe for IntegrityReport
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