Skip to main content

QueryInput

Type Alias QueryInput 

Source
pub type QueryInput = Option<SQLQuery>;
Expand description

The input query state for command translation. None at the start of a pipeline, Some(query) after processing commands.

Aliased Type§

pub enum QueryInput {
    None,
    Some(SQLQuery),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(SQLQuery)

Some value of type T.