Enum libquery::PreFilterResult
[−]
[src]
pub enum PreFilterResult { MayUse, NoData, MissingColumns, }
Result of the pre_filter
call from the PreFilter
trait.
Variants
MayUse
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.
NoData
No relevant data may be inside.
MissingColumns
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]
fn clone(&self) -> PreFilterResult
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more