[][src]Enum c3p0_pool_pg::r2d2::TlsMode

pub enum TlsMode {
    None,
    Prefer(Box<dyn TlsHandshake + 'static + Sync + Send>),
    Require(Box<dyn TlsHandshake + 'static + Sync + Send>),
}

Like postgres::TlsMode except that it owns its TlsHandshake instance.

Variants

None

Like postgres::TlsMode::None.

Prefer(Box<dyn TlsHandshake + 'static + Sync + Send>)

Like postgres::TlsMode::Prefer.

Require(Box<dyn TlsHandshake + 'static + Sync + Send>)

Like postgres::TlsMode::Require.

Trait Implementations

impl Debug for TlsMode[src]

Auto Trait Implementations

impl Unpin for TlsMode

impl Send for TlsMode

impl Sync for TlsMode

impl !RefUnwindSafe for TlsMode

impl !UnwindSafe for TlsMode

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]

impl<T> Same<T> for T

type Output = T

Should always be Self