rsdbc-postgres 0.0.1

Postgres RSDBC Driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[derive(Debug, Copy, Clone, PartialEq)]
#[non_exhaustive]
pub enum SslMode {
    /// Do not use TLS.
    Disable,
    Allow,
    /// Attempt to connect with TLS but allow sessions without.
    Prefer,
    /// Require the use of TLS.
    Require,
    VerifyCA,
    VerifyFull
}