Enum postgres::SslMode
[−]
[src]
pub enum SslMode<'a> {
None,
Prefer(&'a NegotiateSsl),
Require(&'a NegotiateSsl),
}Specifies the SSL support requested for a new connection.
Variants
NoneThe connection will not use SSL.
Prefer(&'a NegotiateSsl)The connection will use SSL if the backend supports it.
Require(&'a NegotiateSsl)The connection must use SSL.