Enum sqlite_requests::request::SqliteExecute[][src]

pub enum SqliteExecute {
    Single(Execute),
    Bulk(BulkExecute),
}

A single SQLite statement or a series of them. A statement is a SQL-Request which can modify the DB and requires ReadWrite access to be run, e.g. everything but a query.

Variants

Trait Implementations

impl From<SqliteExecute> for ProtoSqliteExecute
[src]

Performs the conversion.

impl From<ProtoSqliteExecute> for SqliteExecute
[src]

Performs the conversion.

impl Debug for SqliteExecute
[src]

Formats the value using the given formatter. Read more

impl Clone for SqliteExecute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SqliteExecute
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Request for SqliteExecute
[src]

Auto Trait Implementations