Enum crossbus::delayer::DelayingState
source · pub enum DelayingState {
Abort,
Continue,
Emit,
}Expand description
Indicator to direct the delayer at runtime,
Continue: just continue the execution, no intercept happensAbort: intercept the signal and stop blocking immediatelyEmit: emit the signal notify actor and execute immediately
Variants§
Trait Implementations§
source§impl Clone for DelayingState
impl Clone for DelayingState
source§fn clone(&self) -> DelayingState
fn clone(&self) -> DelayingState
Returns a copy 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 DelayingState
impl Debug for DelayingState
source§impl PartialEq<DelayingState> for DelayingState
impl PartialEq<DelayingState> for DelayingState
source§fn eq(&self, other: &DelayingState) -> bool
fn eq(&self, other: &DelayingState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.