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: StringConnection URL. The scheme selects the backend
(postgres://, mysql://, sqlite://).
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 (const: unstable) · 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§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more