pub enum Step {
Running,
Blocked,
Done(Val),
}Variants§
Running
Blocked
The mailbox was empty. The machine has not consumed the step and
will retry the same receive when stepped again.
Done(Val)
Auto Trait Implementations§
impl Freeze for Step
impl !RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl !UnwindSafe for Step
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