[][src]Struct mesalink::libssl::ssl::MESALINK_METHOD

pub struct MESALINK_METHOD { /* fields omitted */ }

A dispatch structure describing the internal ssl library methods/functions which implement the various protocol versions such as TLS v1.2.

This is a structure describing a specific TLS protocol version. It can be created with a method like TLSv1_2_client_method. Then SSL_CTX_new can consume it and create a new context. Note that a SSL_METHOD object is implicitly freed in SSL_CTX_new. To avoid double free, do NOT reuse SSL_METHOD objects; always create new ones when needed.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]