Enum rusqlite::DatabaseName[][src]

pub enum DatabaseName<'a> {
    Main,
    Temp,
    Attached(&'a str),
}

Name for a database within a SQLite connection.

Variants

The main database.

The temporary database (e.g., any "CREATE TEMPORARY TABLE" tables).

A database that has been attached via "ATTACH DATABASE ...".

Trait Implementations

impl<'a> Copy for DatabaseName<'a>
[src]

impl<'a> Clone for DatabaseName<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for DatabaseName<'a>

impl<'a> Sync for DatabaseName<'a>