Struct security_framework::secure_transport::SslClientCertificateState [−][src]
pub struct SslClientCertificateState(_);
Expand description
Specifies the state of client certificate processing.
Implementations
impl SslClientCertificateState
[src]
impl SslClientCertificateState
[src]pub const NONE: SslClientCertificateState
[src]
pub const NONE: SslClientCertificateState
[src]A client certificate has not been requested or sent.
pub const REQUESTED: SslClientCertificateState
[src]
pub const REQUESTED: SslClientCertificateState
[src]A client certificate has been requested but not recieved.
pub const SENT: SslClientCertificateState
[src]
pub const SENT: SslClientCertificateState
[src]A client certificate has been received and successfully validated.
pub const REJECTED: SslClientCertificateState
[src]
pub const REJECTED: SslClientCertificateState
[src]A client certificate has been received but has failed to validate.
Trait Implementations
impl Clone for SslClientCertificateState
[src]
impl Clone for SslClientCertificateState
[src]fn clone(&self) -> SslClientCertificateState
[src]
fn clone(&self) -> SslClientCertificateState
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for SslClientCertificateState
[src]
impl Debug for SslClientCertificateState
[src]impl PartialEq<SslClientCertificateState> for SslClientCertificateState
[src]
impl PartialEq<SslClientCertificateState> for SslClientCertificateState
[src]fn eq(&self, other: &SslClientCertificateState) -> bool
[src]
fn eq(&self, other: &SslClientCertificateState) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &SslClientCertificateState) -> bool
[src]
fn ne(&self, other: &SslClientCertificateState) -> bool
[src]This method tests for !=
.
impl Copy for SslClientCertificateState
[src]
impl Eq for SslClientCertificateState
[src]
impl StructuralEq for SslClientCertificateState
[src]
impl StructuralPartialEq for SslClientCertificateState
[src]
Auto Trait Implementations
impl RefUnwindSafe for SslClientCertificateState
impl Send for SslClientCertificateState
impl Sync for SslClientCertificateState
impl Unpin for SslClientCertificateState
impl UnwindSafe for SslClientCertificateState
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more