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 moresource§impl<'a> Debug for DatabaseName<'a>
impl<'a> Debug for DatabaseName<'a>
impl<'a> Copy for DatabaseName<'a>
Auto Trait Implementations§
impl<'a> Freeze for DatabaseName<'a>
impl<'a> RefUnwindSafe for DatabaseName<'a>
impl<'a> Send for DatabaseName<'a>
impl<'a> Sync for DatabaseName<'a>
impl<'a> Unpin for DatabaseName<'a>
impl<'a> UnwindSafe for DatabaseName<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)