pub struct Config {
pub path: PathBuf,
pub open_flags: OpenFlags,
pub pool: PoolConfig,
}Expand description
Configuration object.
Fields§
§path: PathBufPath to SQLite database file.
open_flags: OpenFlagsOpen flags for SQLite
pool: PoolConfigPool configuration.
Implementations§
Source§impl Config
impl Config
Sourcepub fn new(path: impl Into<PathBuf>) -> Self
pub fn new(path: impl Into<PathBuf>) -> Self
Create a new Config with the given path of SQLite database file.
pub fn read_only(self) -> Self
pub fn max_size(self, value: usize) -> Self
pub fn create_pool(&self) -> Result<RusqlitePool, CreatePoolError>
pub fn create_pool_transform<T: SqliteConn>( &self, f: impl Fn(Connection) -> Result<T, Error> + Send + Sync + 'static, ) -> Result<Pool<T>, CreatePoolError>
Sourcepub fn builder<T: SqliteConn>(
&self,
f: impl Fn(Connection) -> Result<T, Error> + Send + Sync + 'static,
) -> Result<PoolBuilder<T>, ConfigError>
pub fn builder<T: SqliteConn>( &self, f: impl Fn(Connection) -> Result<T, Error> + Send + Sync + 'static, ) -> Result<PoolBuilder<T>, ConfigError>
Sourcepub fn get_pool_config(&self) -> PoolConfig
pub fn get_pool_config(&self) -> PoolConfig
Returns deadpool::managed::PoolConfig which can be used to construct
a deadpool::managed::Pool instance.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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