pub enum AnyQueryBackend {
    PostgresSession(<PostgresStore as Backend>::Session),
    SqliteSession(<SqliteStore as Backend>::Session),
    // some variants omitted
}
This is supported on crate feature any only.
Expand description

An enumeration of supported backend session types

Variants

PostgresSession(<PostgresStore as Backend>::Session)

Tuple Fields

A PostgreSQL store session

SqliteSession(<SqliteStore as Backend>::Session)

Tuple Fields

A Sqlite store session

Trait Implementations

Formats the value using the given formatter. Read more

Count the number of matching records in the store

Fetch a single record from the store by category and name

Fetch all matching records from the store

Remove all matching records from the store

Insert or replace a record in the store

Close the current store session

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.