Struct security_framework::trust::TrustResult
source · pub struct TrustResult(_);Expand description
The result of trust evaluation.
Implementations§
source§impl TrustResult
impl TrustResult
sourcepub const UNSPECIFIED: Self = _
pub const UNSPECIFIED: Self = _
The certificate is implicitly trusted.
sourcepub const RECOVERABLE_TRUST_FAILURE: Self = _
pub const RECOVERABLE_TRUST_FAILURE: Self = _
Indicates a trust policy failure that the user can override.
sourcepub const FATAL_TRUST_FAILURE: Self = _
pub const FATAL_TRUST_FAILURE: Self = _
Indicates a trust policy failure that the user cannot override.
sourcepub const OTHER_ERROR: Self = _
pub const OTHER_ERROR: Self = _
An error not related to trust validation.
Trait Implementations§
source§impl Clone for TrustResult
impl Clone for TrustResult
source§fn clone(&self) -> TrustResult
fn clone(&self) -> TrustResult
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 TrustResult
impl Debug for TrustResult
source§impl PartialEq<TrustResult> for TrustResult
impl PartialEq<TrustResult> for TrustResult
source§fn eq(&self, other: &TrustResult) -> bool
fn eq(&self, other: &TrustResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.