pub enum ActorCtl {
Stop,
}Expand description
Messages that exhert control over actors.
These messages are sent from the router to an actor thread.
Variants§
Stop
The actor thread should stabilize its state, send an ActorStatus::Stopped to the router through its status channel, and exit.
Auto Trait Implementations§
impl Freeze for ActorCtl
impl RefUnwindSafe for ActorCtl
impl Send for ActorCtl
impl Sync for ActorCtl
impl Unpin for ActorCtl
impl UnwindSafe for ActorCtl
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