pub struct PlanQueryResult {
pub query: String,
pub inferred_intent: String,
pub steps: Vec<PlanStep>,
pub meta: QueryMeta,
}Fields§
§query: String§inferred_intent: String§steps: Vec<PlanStep>§meta: QueryMetaTrait Implementations§
Source§impl Clone for PlanQueryResult
impl Clone for PlanQueryResult
Source§fn clone(&self) -> PlanQueryResult
fn clone(&self) -> PlanQueryResult
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 PlanQueryResult
impl Debug for PlanQueryResult
Source§impl<'de> Deserialize<'de> for PlanQueryResult
impl<'de> Deserialize<'de> for PlanQueryResult
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
Source§impl Display for PlanQueryResult
impl Display for PlanQueryResult
Auto Trait Implementations§
impl Freeze for PlanQueryResult
impl RefUnwindSafe for PlanQueryResult
impl Send for PlanQueryResult
impl Sync for PlanQueryResult
impl Unpin for PlanQueryResult
impl UnsafeUnpin for PlanQueryResult
impl UnwindSafe for PlanQueryResult
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