Trait async_reply::Message[][src]

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

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

Associated Types

type Response: Send[src]

The response type of the message.

Implementors