pub struct DbkitConfig {
pub url: String,
pub pool_size: usize,
pub connect_timeout_secs: u64,
pub idle_timeout_secs: u64,
pub auto_create_db: bool,
}Expand description
Configuration for a dbkit database connection.
Can be built from a URL string or constructed with the builder.
§Example
use dbkit::DbkitConfig;
// From URL
let config = DbkitConfig::from_url("postgres://localhost/mydb");
// From builder
let config = DbkitConfig::builder()
.host("db.example.com")
.port(5432)
.database("myapp")
.user("admin")
.password("secret")
.pool_size(16)
.connect_timeout_secs(10)
.build();Fields§
§url: StringPostgres connection URL.
pool_size: usizeMaximum pool size. Default: 16.
connect_timeout_secs: u64Connection timeout in seconds. Default: 30.
idle_timeout_secs: u64Idle timeout in seconds. Connections idle longer are reaped. Default: 300.
auto_create_db: boolAuto-create the database if it doesn’t exist. Default: true.
Implementations§
Source§impl DbkitConfig
impl DbkitConfig
Trait Implementations§
Source§impl Clone for DbkitConfig
impl Clone for DbkitConfig
Source§fn clone(&self) -> DbkitConfig
fn clone(&self) -> DbkitConfig
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 DbkitConfig
impl RefUnwindSafe for DbkitConfig
impl Send for DbkitConfig
impl Sync for DbkitConfig
impl Unpin for DbkitConfig
impl UnsafeUnpin for DbkitConfig
impl UnwindSafe for DbkitConfig
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