Enum libquery::PreFilterResult [] [src]

pub enum PreFilterResult {
    MayUse,
    NoData,
    MissingColumns,
}

Result of the pre_filter call from the PreFilter trait.

Variants

The container might contain the relevant data and it has all the needed columns, so it can be used.

Note that the columns might be missing with some of the flow slices as being optional.

No relevant data may be inside.

The data may be here, but some columns that whould be requested are not present.

Trait Implementations

impl Copy for PreFilterResult
[src]

impl Clone for PreFilterResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PreFilterResult
[src]

Formats the value using the given formatter.

impl Eq for PreFilterResult
[src]

impl PartialEq for PreFilterResult
[src]

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

This method tests for !=.