pub struct IntegrityReport {
pub ok: bool,
pub schema_version: u32,
pub fact_count: usize,
pub chunk_count: usize,
pub message_count: usize,
pub facts_missing_embeddings: usize,
pub chunks_missing_embeddings: usize,
pub issues: Vec<String>,
}Expand description
Result of an integrity verification.
Fields§
§ok: bool§schema_version: u32§fact_count: usize§chunk_count: usize§message_count: usize§facts_missing_embeddings: usize§chunks_missing_embeddings: usize§issues: Vec<String>Trait Implementations§
Source§impl Clone for IntegrityReport
impl Clone for IntegrityReport
Source§fn clone(&self) -> IntegrityReport
fn clone(&self) -> IntegrityReport
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 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