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