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

Request

Fields

request_id: RequestId

The ID of this request.

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

request_id: RequestId

The ID of the request that produced this response.

See RequestResponse::send_request.

response: TResponse

The response message.

A response message.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.