Enum sqlx_core::mysql::MySqlSslMode [−][src]
pub enum MySqlSslMode {
Disabled,
Preferred,
Required,
VerifyCa,
VerifyIdentity,
}
Expand description
Options for controlling the desired security state of the connection to the MySQL server.
It is used by the ssl_mode
method.
Variants
Establish an unencrypted connection.
Establish an encrypted connection if the server supports encrypted connections, falling back to an unencrypted connection if an encrypted connection cannot be established.
This is the default if ssl_mode
is not specified.
Establish an encrypted connection if the server supports encrypted connections. The connection attempt fails if an encrypted connection cannot be established.
Like Required
, but additionally verify the server Certificate Authority (CA)
certificate against the configured CA certificates. The connection attempt fails
if no valid matching CA certificates are found.
Like VerifyCa
, but additionally perform host name identity verification by
checking the host name the client uses for connecting to the server against the
identity in the certificate that the server sends to the client.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MySqlSslMode
impl Send for MySqlSslMode
impl Sync for MySqlSslMode
impl Unpin for MySqlSslMode
impl UnwindSafe for MySqlSslMode
Blanket Implementations
Mutably borrows from an owned value. Read more