pub enum TrustDecision {
Trusted,
Untrusted(&'static str),
}Variants§
Trait Implementations§
Source§impl Clone for TrustDecision
impl Clone for TrustDecision
Source§fn clone(&self) -> TrustDecision
fn clone(&self) -> TrustDecision
Returns a duplicate 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 TrustDecision
impl Debug for TrustDecision
Source§impl PartialEq for TrustDecision
impl PartialEq for TrustDecision
impl Eq for TrustDecision
impl StructuralPartialEq for TrustDecision
Auto Trait Implementations§
impl Freeze for TrustDecision
impl RefUnwindSafe for TrustDecision
impl Send for TrustDecision
impl Sync for TrustDecision
impl Unpin for TrustDecision
impl UnsafeUnpin for TrustDecision
impl UnwindSafe for TrustDecision
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