Enum rusqlite::DatabaseName
source · pub enum DatabaseName<'a> {
Main,
Temp,
Attached(&'a str),
}
Expand description
Name for a database within a SQLite connection.
Variants§
Main
The main database.
Temp
The temporary database (e.g., any “CREATE TEMPORARY TABLE” tables).
Attached(&'a str)
A database that has been attached via “ATTACH DATABASE …”.
Trait Implementations§
source§impl<'a> Clone for DatabaseName<'a>
impl<'a> Clone for DatabaseName<'a>
source§fn clone(&self) -> DatabaseName<'a>
fn clone(&self) -> DatabaseName<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more