[][src]Struct security_framework::secure_transport::SslClientCertificateState

pub struct SslClientCertificateState(_);

Specifies the state of client certificate processing.

Implementations

impl SslClientCertificateState[src]

pub const NONE: Self[src]

A client certificate has not been requested or sent.

pub const REQUESTED: Self[src]

A client certificate has been requested but not recieved.

pub const SENT: Self[src]

A client certificate has been received and successfully validated.

pub const REJECTED: Self[src]

A client certificate has been received but has failed to validate.

Trait Implementations

impl Clone for SslClientCertificateState[src]

impl Copy for SslClientCertificateState[src]

impl Debug for SslClientCertificateState[src]

impl Eq for SslClientCertificateState[src]

impl PartialEq<SslClientCertificateState> for SslClientCertificateState[src]

impl StructuralEq for SslClientCertificateState[src]

impl StructuralPartialEq for SslClientCertificateState[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.