pub struct QueryExplainResponse {
pub query_type: ExplainQueryType,
pub namespace: String,
pub index_selection: IndexSelection,
pub stages: Vec<ExecutionStage>,
pub cost_estimate: CostEstimate,
pub actual_stats: Option<ActualStats>,
pub recommendations: Vec<Recommendation>,
pub summary: String,
pub query_params: QueryParams,
}Expand description
Query explain response - detailed execution plan
Fields§
§query_type: ExplainQueryTypeQuery type being explained
namespace: StringNamespace being queried
index_selection: IndexSelectionIndex selection information
stages: Vec<ExecutionStage>Query execution stages
cost_estimate: CostEstimateCost estimates
actual_stats: Option<ActualStats>Actual execution stats (if execute=true)
recommendations: Vec<Recommendation>Performance recommendations
summary: StringQuery plan summary
query_params: QueryParamsRaw query parameters
Trait Implementations§
Source§impl Clone for QueryExplainResponse
impl Clone for QueryExplainResponse
Source§fn clone(&self) -> QueryExplainResponse
fn clone(&self) -> QueryExplainResponse
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 QueryExplainResponse
impl Debug for QueryExplainResponse
Source§impl<'de> Deserialize<'de> for QueryExplainResponse
impl<'de> Deserialize<'de> for QueryExplainResponse
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 QueryExplainResponse
impl RefUnwindSafe for QueryExplainResponse
impl Send for QueryExplainResponse
impl Sync for QueryExplainResponse
impl Unpin for QueryExplainResponse
impl UnsafeUnpin for QueryExplainResponse
impl UnwindSafe for QueryExplainResponse
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