Trait postgres_shared::params::IntoConnectParams[][src]

pub trait IntoConnectParams {
    fn into_connect_params(
        self
    ) -> Result<ConnectParams, Box<Error + Sync + Send>>; }

A trait implemented by types that can be converted into a ConnectParams.

Required Methods

Converts the value of self into a ConnectParams.

Implementations on Foreign Types

impl<'a> IntoConnectParams for &'a str
[src]

impl IntoConnectParams for String
[src]

Implementors