pub struct TerminateSignal;
Expand description
Terminates the actor receiving this signal.
Normally you should use AddrSignalExt::terminate
method
instead of sending it to actors directly.
Trait Implementations§
Source§impl Clone for TerminateSignal
impl Clone for TerminateSignal
Source§fn clone(&self) -> TerminateSignal
fn clone(&self) -> TerminateSignal
Returns a duplicate 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 TerminateSignal
impl Debug for TerminateSignal
Source§impl Message for TerminateSignal
impl Message for TerminateSignal
impl Copy for TerminateSignal
Auto Trait Implementations§
impl Freeze for TerminateSignal
impl RefUnwindSafe for TerminateSignal
impl Send for TerminateSignal
impl Sync for TerminateSignal
impl Unpin for TerminateSignal
impl UnwindSafe for TerminateSignal
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