Enum libp2p_request_response::RequestResponseMessage [−][src]
pub enum RequestResponseMessage<TRequest, TResponse, TChannelResponse = TResponse> {
Request {
request_id: RequestId,
request: TRequest,
channel: ResponseChannel<TChannelResponse>,
},
Response {
request_id: RequestId,
response: TResponse,
},
}Expand description
An inbound request or response.
Variants
A request message.
Fields of Request
request_id: RequestIdThe ID of this request.
request: TRequestThe request message.
channel: ResponseChannel<TChannelResponse>The channel waiting for the response.
If this channel is dropped instead of being used to send a response
via RequestResponse::send_response, a RequestResponseEvent::InboundFailure
with InboundFailure::ResponseOmission is emitted.
A response message.
Fields of Response
request_id: RequestIdThe ID of the request that produced this response.
response: TResponseThe response message.