Struct tiberius::ConnectionOptions [] [src]

pub struct ConnectionOptions<'a, S: 'a + TargetStream> {
    pub auth: AuthenticationMethod<'a>,
    pub database: Cow<'a, str>,
    pub stream: S,
}

Fields

auth: AuthenticationMethod<'a> database: Cow<'a, str> stream: S

Trait Implementations

impl<'a, S: Debug + 'a + TargetStream> Debug for ConnectionOptions<'a, S>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a, S: 'a + TargetStream> IntoConnectOpts<'a, S> for ConnectionOptions<'a, S>
[src]