pub struct TableVerify {
pub per_index: Vec<IndexVerify>,
pub spot_rows: u64,
pub spot_type_mismatches: u64,
}Expand description
The whole TABLE.VERIFY answer.
Fields§
§per_index: Vec<IndexVerify>One row per compiled index of the table.
spot_rows: u64Rows the bounded column-type spot check sampled this call.
spot_type_mismatches: u64Of those, rows holding a value that contradicts the declared column type.
Trait Implementations§
Source§impl Clone for TableVerify
impl Clone for TableVerify
Source§fn clone(&self) -> TableVerify
fn clone(&self) -> TableVerify
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 TableVerify
impl Debug for TableVerify
impl Eq for TableVerify
Source§impl PartialEq for TableVerify
impl PartialEq for TableVerify
impl StructuralPartialEq for TableVerify
Auto Trait Implementations§
impl Freeze for TableVerify
impl RefUnwindSafe for TableVerify
impl Send for TableVerify
impl Sync for TableVerify
impl Unpin for TableVerify
impl UnsafeUnpin for TableVerify
impl UnwindSafe for TableVerify
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