Enum libp2p_request_response::Message
source · pub enum Message<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 Behaviour::send_response
, a Event::InboundFailure
with InboundFailure::ResponseOmission
is emitted.
A request message.
Response
Fields
§
response: TResponse
The response message.
A response message.
Trait Implementations§
Auto Trait Implementations§
impl<TRequest, TResponse, TChannelResponse = TResponse> !RefUnwindSafe for Message<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse> Send for Message<TRequest, TResponse, TChannelResponse>where TChannelResponse: Send, TRequest: Send, TResponse: Send,
impl<TRequest, TResponse, TChannelResponse> Sync for Message<TRequest, TResponse, TChannelResponse>where TChannelResponse: Send, TRequest: Sync, TResponse: Sync,
impl<TRequest, TResponse, TChannelResponse> Unpin for Message<TRequest, TResponse, TChannelResponse>where TRequest: Unpin, TResponse: Unpin,
impl<TRequest, TResponse, TChannelResponse = TResponse> !UnwindSafe for Message<TRequest, TResponse, TChannelResponse>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more