[−][src]Struct mysql_async::SslOpts 
Ssl Options.
Methods
impl SslOpts[src]
pub fn set_pkcs12_path<T: Into<Cow<'static, Path>>>(
    &mut self, 
    pkcs12_path: Option<T>
) -> &mut Self[src]
&mut self,
pkcs12_path: Option<T>
) -> &mut Self
Sets path to the pkcs12 archive.
pub fn set_password<T: Into<Cow<'static, str>>>(
    &mut self, 
    password: Option<T>
) -> &mut Self[src]
&mut self,
password: Option<T>
) -> &mut Self
Sets the password for a pkcs12 archive (defaults to None).
pub fn set_root_cert_path<T: Into<Cow<'static, Path>>>(
    &mut self, 
    root_cert_path: Option<T>
) -> &mut Self[src]
&mut self,
root_cert_path: Option<T>
) -> &mut Self
Sets path to a der certificate of the root that connector will trust.
pub fn set_danger_skip_domain_validation(&mut self, value: bool) -> &mut Self[src]
The way to not validate the server's domain
name against its certificate (defaults to false).
pub fn set_danger_accept_invalid_certs(&mut self, value: bool) -> &mut Self[src]
If true then client will accept invalid certificate (expired, not trusted, ..)
(defaults to false).
pub fn pkcs12_path(&self) -> Option<&Path>[src]
pub fn password(&self) -> Option<&str>[src]
pub fn root_cert_path(&self) -> Option<&Path>[src]
pub fn skip_domain_validation(&self) -> bool[src]
pub fn accept_invalid_certs(&self) -> bool[src]
Trait Implementations
impl Default for SslOpts[src]
impl Clone for SslOpts[src]
fn clone(&self) -> SslOpts[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<SslOpts> for SslOpts[src]
impl Eq for SslOpts[src]
impl Hash for SslOpts[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for SslOpts[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self