Struct mentat_query_projector::QueryOutput [] [src]

pub struct QueryOutput {
    pub spec: Rc<FindSpec>,
    pub results: QueryResults,
}

Fields

Methods

impl QueryOutput
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Mentat tuple results can be expressed as multiple different data structures. Some structures are generic (vectors) and some are easier for pattern matching (fixed length tuples).

This is the moral equivalent of collect (and BindingTuple of FromIterator), but specialized to tuples of expected length.

[src]

Trait Implementations

impl Clone for QueryOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for QueryOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for QueryOutput
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for QueryOutput
[src]

impl From<QueryOutput> for QueryResults
[src]

[src]

Performs the conversion.