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§
Object Safety§
This trait is not object safe.