pub trait ToSignalEnvelope<A>: ToEnvelope<A, StopSignal> + ToEnvelope<A, TerminateSignal> + Sealed{ }
Expand description

Execution contexts that are able to handle signals.

This trait is sealed and automatically implemented for contexts of which the associated actors implement Handlers for signals. See top-level document for instructions on implementing these traits.

Object Safety§

This trait is not object safe.

Implementors§