pub enum ReactingOrder {
Exit(i32),
Abort(ReactorHandle),
Execute(ReactorPair),
}Expand description
orders that Reactor execute
Variants§
Exit(i32)
exit the program
Abort(ReactorHandle)
Abort a future
Execute(ReactorPair)
executing a future
Trait Implementations§
impl Send for ReactingOrder
impl Sync for ReactingOrder
Auto Trait Implementations§
impl Freeze for ReactingOrder
impl !RefUnwindSafe for ReactingOrder
impl Unpin for ReactingOrder
impl UnsafeUnpin for ReactingOrder
impl !UnwindSafe for ReactingOrder
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