pub trait Context: 'static {
// Required method
fn send_back<T: IntoMessage>(&self, message: T) -> Result<(), SendError>;
}Expand description
Allows sending messages from workers to back to the caller.
Required Methods§
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.