[]Struct c3p0_pool_pg::postgres::params::Builder

pub struct Builder { /* fields omitted */ }

A builder for ConnectParams.

Methods

impl Builder

pub fn new() -> Builder

Creates a new builder.

pub fn port(&mut self, port: u16) -> &mut Builder

Sets the port.

pub fn user(&mut self, name: &str, password: Option<&str>) -> &mut Builder

Sets the user.

pub fn database(&mut self, database: &str) -> &mut Builder

Sets the database.

pub fn option(&mut self, name: &str, value: &str) -> &mut Builder

Adds a runtime parameter.

pub fn connect_timeout(
    &mut self,
    connect_timeout: Option<Duration>
) -> &mut Builder

Sets the connection timeout.

pub fn build(&mut self, host: Host) -> ConnectParams

Constructs a ConnectParams from the builder.

Auto Trait Implementations

impl Sync for Builder

impl Send for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

impl RefUnwindSafe for Builder

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self