[][src]Struct ieql::query::query::CompiledQuery

pub struct CompiledQuery {
    pub response: Response,
    pub scope: CompiledScope,
    pub threshold: Threshold,
    pub triggers: Vec<CompiledTrigger>,
    pub id: Option<String>,
}

Represents a compiled query which is ready to scan (compiled) documents (CompiledDocument).

For more information about each of these fields, please see the Query documentation.

Fields

response: Responsescope: CompiledScopethreshold: Thresholdtriggers: Vec<CompiledTrigger>id: Option<String>

Trait Implementations

impl Clone for CompiledQuery[src]

impl CompilableTo<CompiledQuery> for Query[src]

fn compile(&self) -> Result<CompiledQuery, Issue>[src]

Compiles the Query into a CompiledQuery. Like all compilation operations, this is expensive.

impl From<CompiledQuery> for CompiledQueryGroup[src]

fn from(query: CompiledQuery) -> CompiledQueryGroup[src]

This helper function creates a CompiledQueryGroup for single queries, enabling multithreading support for single queries without any significant 'hacks.'

impl Scanner for CompiledQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,