pub struct Resumed;Expand description
The pause side of TaskNode::run_pausable’s result: a stop/pause request
won the race, the combinator acked and parked, and the supervisor has since
resumed the node. By the time a body sees Err(Resumed) the park is already
over — the next loop iteration is the fresh cycle.
Trait Implementations§
impl Copy for Resumed
impl Eq for Resumed
impl StructuralPartialEq for Resumed
Auto Trait Implementations§
impl Freeze for Resumed
impl RefUnwindSafe for Resumed
impl Send for Resumed
impl Sync for Resumed
impl Unpin for Resumed
impl UnsafeUnpin for Resumed
impl UnwindSafe for Resumed
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