pub struct ExecutionStage {
pub name: String,
pub description: String,
pub order: u32,
pub estimated_input: u64,
pub estimated_output: u64,
pub estimated_cost: f64,
pub details: HashMap<String, Value>,
}Expand description
A stage in query execution
Fields§
§name: StringStage name
description: StringStage description
order: u32Stage order (1-based)
estimated_input: u64Estimated input rows
estimated_output: u64Estimated output rows
estimated_cost: f64Estimated cost for this stage
details: HashMap<String, Value>Stage-specific details
Trait Implementations§
Source§impl Clone for ExecutionStage
impl Clone for ExecutionStage
Source§fn clone(&self) -> ExecutionStage
fn clone(&self) -> ExecutionStage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExecutionStage
impl Debug for ExecutionStage
Source§impl<'de> Deserialize<'de> for ExecutionStage
impl<'de> Deserialize<'de> for ExecutionStage
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 ExecutionStage
impl RefUnwindSafe for ExecutionStage
impl Send for ExecutionStage
impl Sync for ExecutionStage
impl Unpin for ExecutionStage
impl UnsafeUnpin for ExecutionStage
impl UnwindSafe for ExecutionStage
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