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§
Request
Fields
§
request: TRequest
The 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 request message.
Response
Fields
§
response: TResponse
The response message.
A response message.