pub enum ObserverDecision {
Continue,
Abort,
}
Variants§
Trait Implementations§
Source§impl Clone for ObserverDecision
impl Clone for ObserverDecision
Source§fn clone(&self) -> ObserverDecision
fn clone(&self) -> ObserverDecision
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 ObserverDecision
impl Debug for ObserverDecision
Source§impl Ord for ObserverDecision
impl Ord for ObserverDecision
Source§fn cmp(&self, other: &ObserverDecision) -> Ordering
fn cmp(&self, other: &ObserverDecision) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ObserverDecision
impl PartialEq for ObserverDecision
Source§impl PartialOrd for ObserverDecision
impl PartialOrd for ObserverDecision
impl Eq for ObserverDecision
impl StructuralPartialEq for ObserverDecision
Auto Trait Implementations§
impl Freeze for ObserverDecision
impl RefUnwindSafe for ObserverDecision
impl Send for ObserverDecision
impl Sync for ObserverDecision
impl Unpin for ObserverDecision
impl UnwindSafe for ObserverDecision
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