pub enum DeviceTrustState {
Trusted,
UntrustedNoAttestation,
UntrustedNoRegistry,
UntrustedInvalid(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DeviceTrustState
impl Clone for DeviceTrustState
Source§fn clone(&self) -> DeviceTrustState
fn clone(&self) -> DeviceTrustState
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 DeviceTrustState
impl Debug for DeviceTrustState
impl Eq for DeviceTrustState
Source§impl PartialEq for DeviceTrustState
impl PartialEq for DeviceTrustState
Source§fn eq(&self, other: &DeviceTrustState) -> bool
fn eq(&self, other: &DeviceTrustState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeviceTrustState
Auto Trait Implementations§
impl Freeze for DeviceTrustState
impl RefUnwindSafe for DeviceTrustState
impl Send for DeviceTrustState
impl Sync for DeviceTrustState
impl Unpin for DeviceTrustState
impl UnsafeUnpin for DeviceTrustState
impl UnwindSafe for DeviceTrustState
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