Trait Context

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

Source

fn send_back<T: IntoMessage>(&self, message: T) -> Result<(), SendError>

Send a message back to the caller.

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§