pub trait IsRequest {
    type Response;

    const PROTOCOL: Protocol;
}
Expand description

Common properties of any Request.

Required Associated Types§

source

type Response

Each request has a corresponding Response.

Required Associated Constants§

source

const PROTOCOL: Protocol

What protocol this Request implements.

Implementors§