mysql_async 0.36.2

Tokio based asynchronous MySql client library.
Documentation
use crate::io::Endpoint;
use crate::{Result, SslOpts};

#[derive(Clone, Debug)]
pub(crate) struct TlsConnector;

impl SslOpts {
    pub(crate) async fn build_tls_connector(&self) -> Result<TlsConnector> {
        panic!(
            "Client had asked for TLS connection but TLS support is disabled. \
            Please enable one of the following features: [\"native-tls-tls\", \"rustls-tls\"]"
        )
    }
}

impl Endpoint {
    pub async fn make_secure(
        &mut self,
        _domain: String,
        _tls_connector: &TlsConnector,
    ) -> Result<()> {
        unreachable!();
    }
}