pub trait Message: 'static + Send {
    type Response: Send;
}
Expand description

A trait to bind the message and its respective response type.

Associated Types

The response type of the message.

Implementors