IntoConnectParams

Trait IntoConnectParams 

Source
pub trait IntoConnectParams {
    // Required method
    fn into_connect_params(self) -> HdbResult<ConnectParams>;
}
Expand description

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

Required Methods§

Source

fn into_connect_params(self) -> HdbResult<ConnectParams>

Converts the value of self into a ConnectParams.

§Errors

HdbError::Usage if not enough or inconsistent information was provided

Implementations on Foreign Types§

Source§

impl IntoConnectParams for &str

Source§

impl IntoConnectParams for String

Source§

impl IntoConnectParams for Url

Implementors§