pub struct JoinStats {
pub count: u64,
pub total_selectivity: f64,
pub avg_selectivity: f64,
}Expand description
Statistics for a specific join pair
Fields§
§count: u64Number of times this join pair was executed.
total_selectivity: f64Cumulative selectivity across all executions.
avg_selectivity: f64Average selectivity (total_selectivity / count).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinStats
impl RefUnwindSafe for JoinStats
impl Send for JoinStats
impl Sync for JoinStats
impl Unpin for JoinStats
impl UnsafeUnpin for JoinStats
impl UnwindSafe for JoinStats
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