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