pub trait IsRequest {
    type Response;

    const PROTOCOL: Protocol;
}
Expand description

Common properties of any Request.

Required Associated Types§

Each request has a corresponding Response.

Required Associated Constants§

What protocol this Request implements.

Implementors§