pub struct SqliteOptions {
pub db_path: String,
pub translate_placeholders: bool,
}Expand description
Options for configuring a SQLite pool.
Fields§
§db_path: String§translate_placeholders: boolImplementations§
Source§impl SqliteOptions
impl SqliteOptions
Trait Implementations§
Source§impl Clone for SqliteOptions
impl Clone for SqliteOptions
Source§fn clone(&self) -> SqliteOptions
fn clone(&self) -> SqliteOptions
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SqliteOptions
impl RefUnwindSafe for SqliteOptions
impl Send for SqliteOptions
impl Sync for SqliteOptions
impl Unpin for SqliteOptions
impl UnwindSafe for SqliteOptions
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