Enum libp2p_request_response::Event
source · pub enum Event<TRequest, TResponse, TChannelResponse = TResponse> {
Message {
peer: PeerId,
message: Message<TRequest, TResponse, TChannelResponse>,
},
OutboundFailure {
peer: PeerId,
request_id: RequestId,
error: OutboundFailure,
},
InboundFailure {
peer: PeerId,
request_id: RequestId,
error: InboundFailure,
},
ResponseSent {
peer: PeerId,
request_id: RequestId,
},
}
Expand description
The events emitted by a request-response Behaviour
.
Variants§
Message
An incoming message (request or response).
Fields
OutboundFailure
An outbound request failed.
Fields
§
error: OutboundFailure
The error that occurred.
InboundFailure
An inbound request failed.
Fields
§
error: InboundFailure
The error that occurred.
ResponseSent
A response to an inbound request has been sent.
When this event is received, the response has been flushed on the underlying transport connection.
Trait Implementations§
Auto Trait Implementations§
impl<TRequest, TResponse, TChannelResponse> Freeze for Event<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse = TResponse> !RefUnwindSafe for Event<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse> Send for Event<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse> Sync for Event<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse> Unpin for Event<TRequest, TResponse, TChannelResponse>
impl<TRequest, TResponse, TChannelResponse = TResponse> !UnwindSafe for Event<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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more