pub struct AqlExplainResponse {Show 14 fields
pub task: String,
pub brain_id: u64,
pub selected_mode: String,
pub logical_plan: AqlLogicalPlanResponse,
pub policy_rewritten_plan: AqlLogicalPlanResponse,
pub bitmap_plan: String,
pub bitmap_ops: Vec<String>,
pub filters: Vec<AqlExplainFilterResponse>,
pub cost_model: Option<AqlCostModelResponse>,
pub candidate_counts: AqlCandidateCountsResponse,
pub candidate_limit: u32,
pub budget_tokens: u32,
pub citations_required: bool,
pub execution_trace: Option<AqlExecutionTraceResponse>,
}Fields§
§task: String§brain_id: u64§selected_mode: String§logical_plan: AqlLogicalPlanResponse§policy_rewritten_plan: AqlLogicalPlanResponse§bitmap_plan: String§bitmap_ops: Vec<String>§filters: Vec<AqlExplainFilterResponse>§cost_model: Option<AqlCostModelResponse>§candidate_counts: AqlCandidateCountsResponse§candidate_limit: u32§budget_tokens: u32§citations_required: bool§execution_trace: Option<AqlExecutionTraceResponse>Trait Implementations§
Source§impl Clone for AqlExplainResponse
impl Clone for AqlExplainResponse
Source§fn clone(&self) -> AqlExplainResponse
fn clone(&self) -> AqlExplainResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AqlExplainResponse
impl Debug for AqlExplainResponse
Source§impl<'de> Deserialize<'de> for AqlExplainResponse
impl<'de> Deserialize<'de> for AqlExplainResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AqlExplainResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AqlExplainResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AqlExplainResponse
Source§impl PartialEq for AqlExplainResponse
impl PartialEq for AqlExplainResponse
Source§fn eq(&self, other: &AqlExplainResponse) -> bool
fn eq(&self, other: &AqlExplainResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AqlExplainResponse
impl Serialize for AqlExplainResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AqlExplainResponse
Auto Trait Implementations§
impl Freeze for AqlExplainResponse
impl RefUnwindSafe for AqlExplainResponse
impl Send for AqlExplainResponse
impl Sync for AqlExplainResponse
impl Unpin for AqlExplainResponse
impl UnsafeUnpin for AqlExplainResponse
impl UnwindSafe for AqlExplainResponse
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