Trait polkadot_node_network_protocol::request_response::IsRequest[][src]

pub trait IsRequest {
    type Response;

    const PROTOCOL: Protocol;
}
Expand description

Common properties of any Request.

Associated Types

Each request has a corresponding Response.

Associated Constants

What protocol this Request implements.

Implementors