Enum mentat::query::PreparedQuery [] [src]

pub enum PreparedQuery<'sqlite> {
    Empty {
        find_spec: Rc<FindSpec>,
    },
    Constant {
        select: ConstantProjector,
    },
    Bound {
        statement: Statement<'sqlite>,
        schema: Schema,
        connection: &'sqlite Connection,
        args: Vec<(String, Rc<Value>)>,
        projector: Box<Projector>,
    },
}

Variants

Fields of Empty

Fields of Constant

Fields of Bound

Methods

impl<'sqlite> PreparedQuery<'sqlite>
[src]

Trait Implementations

Auto Trait Implementations

impl<'sqlite> !Send for PreparedQuery<'sqlite>

impl<'sqlite> !Sync for PreparedQuery<'sqlite>