[][src]Module ieql::query::query

This file contains functionality related to queries.

Structs

CompiledQuery

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

CompiledQueryGroup

Represents a group of compiled queries. This type has several internal optimizations that makes scanning using a CompiledQueryGroup far more efficient than scanning using compiled queries alone.

Query

Query represents an uncompiled query. This type is typically interstitial; it cannot perform scans, and has little functionality apart from its ability to compile into a CompiledQuery.

QueryGroup

Represents a collection of queries. This type is useful in cases where many different queries are being compiled at once.