Enum simpl_actor::ActorStopReason
source · pub enum ActorStopReason {
Normal,
Panicked,
LinkDied {
id: u64,
reason: Box<ActorStopReason>,
},
}Expand description
Reason for an actor being stopped.
Variants§
Trait Implementations§
source§impl Clone for ActorStopReason
impl Clone for ActorStopReason
source§fn clone(&self) -> ActorStopReason
fn clone(&self) -> ActorStopReason
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ActorStopReason
impl Debug for ActorStopReason
Auto Trait Implementations§
impl Freeze for ActorStopReason
impl RefUnwindSafe for ActorStopReason
impl Send for ActorStopReason
impl Sync for ActorStopReason
impl Unpin for ActorStopReason
impl UnwindSafe for ActorStopReason
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