pub struct QueryCost {
pub cpu_cost: f64,
pub io_cost: f64,
pub network_cost: f64,
pub total_cost: f64,
}
Expand description
Query execution cost
Fields§
§cpu_cost: f64
§io_cost: f64
§network_cost: f64
§total_cost: f64
Trait 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 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