pub struct AttrStats {
pub count: usize,
pub distinct_values: usize,
pub distinct_entities: usize,
}Expand description
Per-attribute statistics driving planner selectivity estimates.
Fields§
§count: usizeDatoms carrying this attribute in the view.
distinct_values: usizeDistinct values for this attribute.
distinct_entities: usizeDistinct entities carrying this attribute.
Trait Implementations§
impl Copy for AttrStats
impl Eq for AttrStats
impl StructuralPartialEq for AttrStats
Auto Trait Implementations§
impl Freeze for AttrStats
impl RefUnwindSafe for AttrStats
impl Send for AttrStats
impl Sync for AttrStats
impl Unpin for AttrStats
impl UnsafeUnpin for AttrStats
impl UnwindSafe for AttrStats
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