[][src]Module quaint::prelude

A "prelude" for users of the quaint crate.

Re-exports

pub use crate::val;
pub use crate::col;
pub use crate::ast::*;

Structs

DBIO

The main unit of asynchronous IO. For now just a shell for a boxed Future, allowing access to the metrics and logging of IO.

ResultRow

An owned version of a Row in a ResultSet. See ResultRowRef for documentation on data access.

ResultSet

Encapsulates a set of results and their respective column names.

Transaction

A representation of an SQL database transaction. If not commited, a transaction will be rolled back by default when dropped.

Enums

ConnectionInfo

General information about a SQL connection.

SqlFamily

One of the supported SQL variants.

Traits

Queryable

Represents a connection or a transaction that can be queried.

TransactionCapable

A thing that can start a new transaction.