pub struct SqliteSessionConfig {
pub db_path: PathBuf,
}Expand description
Configuration for the SQLite session service.
Fields§
§db_path: PathBufPath to the SQLite database file.
Implementations§
Trait Implementations§
Source§impl Clone for SqliteSessionConfig
impl Clone for SqliteSessionConfig
Source§fn clone(&self) -> SqliteSessionConfig
fn clone(&self) -> SqliteSessionConfig
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 SqliteSessionConfig
impl RefUnwindSafe for SqliteSessionConfig
impl Send for SqliteSessionConfig
impl Sync for SqliteSessionConfig
impl Unpin for SqliteSessionConfig
impl UnsafeUnpin for SqliteSessionConfig
impl UnwindSafe for SqliteSessionConfig
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