Trait ToSignalEnvelope

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§