pub struct IndexConsistencyReport {
pub consistent: bool,
pub missing_in_temporal: Vec<u64>,
pub missing_in_semantic: Vec<u64>,
pub missing_in_entity: Vec<u64>,
pub total_blocks: u64,
}Expand description
Index consistency report
Fields§
§consistent: bool§missing_in_temporal: Vec<u64>§missing_in_semantic: Vec<u64>§missing_in_entity: Vec<u64>§total_blocks: u64Trait Implementations§
Source§impl Debug for IndexConsistencyReport
impl Debug for IndexConsistencyReport
Source§impl Default for IndexConsistencyReport
impl Default for IndexConsistencyReport
Source§fn default() -> IndexConsistencyReport
fn default() -> IndexConsistencyReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IndexConsistencyReport
impl RefUnwindSafe for IndexConsistencyReport
impl Send for IndexConsistencyReport
impl Sync for IndexConsistencyReport
impl Unpin for IndexConsistencyReport
impl UnsafeUnpin for IndexConsistencyReport
impl UnwindSafe for IndexConsistencyReport
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