Enum mentat_query_algebrizer::ComputedTable [] [src]

pub enum ComputedTable {
    Subquery(ConjoiningClauses),
    Union {
        projection: BTreeSet<Variable>,
        type_extraction: BTreeSet<Variable>,
        arms: Vec<ConjoiningClauses>,
    },
    NamedValues {
        names: Vec<Variable>,
        values: Vec<TypedValue>,
    },
}

A source of rows that isn't a named table -- typically a subquery or union.

Variants

Fields of Union

Fields of NamedValues

Trait Implementations

impl PartialEq for ComputedTable
[src]

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

This method tests for !=.

impl Eq for ComputedTable
[src]

impl Debug for ComputedTable
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for ComputedTable

impl !Sync for ComputedTable