pub struct QueryCost {
pub estimated_rows: u64,
pub estimated_cost: f64,
pub join_count: usize,
pub filter_selectivity: f64,
}Expand description
Query cost estimation
Fields§
§estimated_rows: u64§estimated_cost: f64§join_count: usize§filter_selectivity: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryCost
impl RefUnwindSafe for QueryCost
impl Send for QueryCost
impl Sync for QueryCost
impl Unpin for QueryCost
impl UnsafeUnpin for QueryCost
impl UnwindSafe for QueryCost
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