#[repr(u32)]pub enum TrustResultType {
Invalid = 0,
Proceed = 1,
Confirm = 2,
Deny = 3,
Unspecified = 4,
RecoverableTrustFailure = 5,
FatalTrustFailure = 6,
OtherError = 7,
}Variants§
Invalid = 0
Proceed = 1
Confirm = 2
Deny = 3
Unspecified = 4
RecoverableTrustFailure = 5
FatalTrustFailure = 6
OtherError = 7
Trait Implementations§
Source§impl Clone for TrustResultType
impl Clone for TrustResultType
Source§fn clone(&self) -> TrustResultType
fn clone(&self) -> TrustResultType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrustResultType
impl Debug for TrustResultType
Source§impl Hash for TrustResultType
impl Hash for TrustResultType
Source§impl PartialEq for TrustResultType
impl PartialEq for TrustResultType
Source§fn eq(&self, other: &TrustResultType) -> bool
fn eq(&self, other: &TrustResultType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TrustResultType
impl Eq for TrustResultType
impl StructuralPartialEq for TrustResultType
Auto Trait Implementations§
impl Freeze for TrustResultType
impl RefUnwindSafe for TrustResultType
impl Send for TrustResultType
impl Sync for TrustResultType
impl Unpin for TrustResultType
impl UnsafeUnpin for TrustResultType
impl UnwindSafe for TrustResultType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more