Struct mentat_query_algebrizer::FindQuery [] [src]

pub struct FindQuery {
    pub find_spec: FindSpec,
    pub default_source: SrcVar,
    pub with: BTreeSet<Variable>,
    pub in_vars: BTreeSet<Variable>,
    pub in_sources: BTreeSet<SrcVar>,
    pub limit: Limit,
    pub where_clauses: Vec<WhereClause>,
    pub order: Option<Vec<Order>>,
}

A FindQuery represents a valid query to the query algebrizer.

We split FindQuery from ParsedQuery because it's not easy to generalize over containers (here, Vec and BTreeSet) in Rust.

Fields

Methods

impl FindQuery
[src]

Trait Implementations

impl Debug for FindQuery
[src]

Formats the value using the given formatter. Read more

impl Eq for FindQuery
[src]

impl PartialEq for FindQuery
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl !Send for FindQuery

impl !Sync for FindQuery