pub enum Stopping {
Stop,
Continue,
}Expand description
Return value of Actor::stopping.
Variants§
Stop
The actor could not resume by itself. Stop the actor.
Continue
The actor could resume by itself.
Trait Implementations§
impl Copy for Stopping
impl Eq for Stopping
impl StructuralPartialEq for Stopping
Auto Trait Implementations§
impl Freeze for Stopping
impl RefUnwindSafe for Stopping
impl Send for Stopping
impl Sync for Stopping
impl Unpin for Stopping
impl UnsafeUnpin for Stopping
impl UnwindSafe for Stopping
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