Struct openssl::x509::X509VerifyResult
source · pub struct X509VerifyResult(_);
Expand description
The result of peer certificate verification.
Implementations§
source§impl X509VerifyResult
impl X509VerifyResult
sourcepub unsafe fn from_raw(err: c_int) -> X509VerifyResult
pub unsafe fn from_raw(err: c_int) -> X509VerifyResult
Creates an X509VerifyResult
from a raw error number.
Safety
Some methods on X509VerifyResult
are not thread safe if the error
number is invalid.
sourcepub fn error_string(&self) -> &'static str
pub fn error_string(&self) -> &'static str
Return a human readable error string from the verification error.
This corresponds to X509_verify_cert_error_string
.
sourcepub const OK: X509VerifyResult = _
pub const OK: X509VerifyResult = _
Successful peer certificate verification.
sourcepub const APPLICATION_VERIFICATION: X509VerifyResult = _
pub const APPLICATION_VERIFICATION: X509VerifyResult = _
Application verification failure.
Trait Implementations§
source§impl Clone for X509VerifyResult
impl Clone for X509VerifyResult
source§fn clone(&self) -> X509VerifyResult
fn clone(&self) -> X509VerifyResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for X509VerifyResult
impl Debug for X509VerifyResult
source§impl Display for X509VerifyResult
impl Display for X509VerifyResult
source§impl Error for X509VerifyResult
impl Error for X509VerifyResult
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<X509VerifyResult> for X509VerifyResult
impl PartialEq<X509VerifyResult> for X509VerifyResult
source§fn eq(&self, other: &X509VerifyResult) -> bool
fn eq(&self, other: &X509VerifyResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.