pub struct DbConfigBuilder { /* private fields */ }
Implementations§
Source§impl DbConfigBuilder
impl DbConfigBuilder
pub fn new() -> Self
pub fn host(self, host: &str) -> Self
pub fn name(self, name: &str) -> Self
pub fn user(self, user: &str) -> Self
pub fn pass(self, pass: &str) -> Self
pub fn port(self, port: u16) -> Self
pub fn min_pool_size(self, min_pool_size: u32) -> Self
pub fn max_pool_size(self, max_pool_size: u32) -> Self
pub fn idle_in_transaction_session(self, idle: u32) -> Self
pub fn app_name(self, app_name: &str) -> Self
pub fn build(self) -> Result<DbConfig, &'static str>
Auto Trait Implementations§
impl Freeze for DbConfigBuilder
impl RefUnwindSafe for DbConfigBuilder
impl Send for DbConfigBuilder
impl Sync for DbConfigBuilder
impl Unpin for DbConfigBuilder
impl UnwindSafe for DbConfigBuilder
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
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