pub struct PlanCost {
pub cpu_cost: f64,
pub io_cost: f64,
pub network_cost: f64,
pub memory_cost: f64,
pub total_cost: f64,
}
Expand description
Query plan cost
Fields§
§cpu_cost: f64
§io_cost: f64
§network_cost: f64
§memory_cost: f64
§total_cost: f64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlanCost
impl<'de> Deserialize<'de> for PlanCost
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PlanCost
impl RefUnwindSafe for PlanCost
impl Send for PlanCost
impl Sync for PlanCost
impl Unpin for PlanCost
impl UnwindSafe for PlanCost
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