Struct security_framework::trust::TrustResult [−][src]
pub struct TrustResult(_);
Expand description
The result of trust evaluation.
Implementations
impl TrustResult
[src]
impl TrustResult
[src]pub const INVALID: TrustResult
[src]
pub const INVALID: TrustResult
[src]An invalid setting or result.
pub const PROCEED: TrustResult
[src]
pub const PROCEED: TrustResult
[src]You may proceed.
pub const DENY: TrustResult
[src]
pub const DENY: TrustResult
[src]Indicates a denial by the user, do not proceed.
pub const UNSPECIFIED: TrustResult
[src]
pub const UNSPECIFIED: TrustResult
[src]The certificate is implicitly trusted.
pub const RECOVERABLE_TRUST_FAILURE: TrustResult
[src]
pub const RECOVERABLE_TRUST_FAILURE: TrustResult
[src]Indicates a trust policy failure that the user can override.
pub const FATAL_TRUST_FAILURE: TrustResult
[src]
pub const FATAL_TRUST_FAILURE: TrustResult
[src]Indicates a trust policy failure that the user cannot override.
pub const OTHER_ERROR: TrustResult
[src]
pub const OTHER_ERROR: TrustResult
[src]An error not related to trust validation.
impl TrustResult
[src]
impl TrustResult
[src]Trait Implementations
impl Clone for TrustResult
[src]
impl Clone for TrustResult
[src]fn clone(&self) -> TrustResult
[src]
fn clone(&self) -> TrustResult
[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 TrustResult
[src]
impl Debug for TrustResult
[src]impl PartialEq<TrustResult> for TrustResult
[src]
impl PartialEq<TrustResult> for TrustResult
[src]fn eq(&self, other: &TrustResult) -> bool
[src]
fn eq(&self, other: &TrustResult) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &TrustResult) -> bool
[src]
fn ne(&self, other: &TrustResult) -> bool
[src]This method tests for !=
.
impl Copy for TrustResult
[src]
impl Eq for TrustResult
[src]
impl StructuralEq for TrustResult
[src]
impl StructuralPartialEq for TrustResult
[src]
Auto Trait Implementations
impl RefUnwindSafe for TrustResult
impl Send for TrustResult
impl Sync for TrustResult
impl Unpin for TrustResult
impl UnwindSafe for TrustResult
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