Struct libp2p_request_response::handler::ResponseProtocol
source · pub struct ResponseProtocol<TCodec>where
TCodec: Codec,{ /* private fields */ }
Expand description
Response substream upgrade protocol.
Receives a request and sends a response.
Trait Implementations§
source§impl<TCodec> Debug for ResponseProtocol<TCodec>where
TCodec: Codec + Debug,
TCodec::Protocol: Debug,
TCodec::Request: Debug,
TCodec::Response: Debug,
impl<TCodec> Debug for ResponseProtocol<TCodec>where TCodec: Codec + Debug, TCodec::Protocol: Debug, TCodec::Request: Debug, TCodec::Response: Debug,
source§impl<TCodec> InboundUpgrade<Negotiated<SubstreamBox>> for ResponseProtocol<TCodec>where
TCodec: Codec + Send + 'static,
impl<TCodec> InboundUpgrade<Negotiated<SubstreamBox>> for ResponseProtocol<TCodec>where TCodec: Codec + Send + 'static,
§type Output = bool
type Output = bool
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = Pin<Box<dyn Future<Output = Result<<ResponseProtocol<TCodec> as InboundUpgrade<Negotiated<SubstreamBox>>>::Output, <ResponseProtocol<TCodec> as InboundUpgrade<Negotiated<SubstreamBox>>>::Error>> + Send + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<ResponseProtocol<TCodec> as InboundUpgrade<Negotiated<SubstreamBox>>>::Output, <ResponseProtocol<TCodec> as InboundUpgrade<Negotiated<SubstreamBox>>>::Error>> + Send + 'static, Global>>
Future that performs the handshake with the remote.
source§fn upgrade_inbound(
self,
io: NegotiatedSubstream,
protocol: Self::Info
) -> Self::Future
fn upgrade_inbound( self, io: NegotiatedSubstream, protocol: Self::Info ) -> Self::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
source§impl<TCodec> UpgradeInfo for ResponseProtocol<TCodec>where
TCodec: Codec,
impl<TCodec> UpgradeInfo for ResponseProtocol<TCodec>where TCodec: Codec,
§type InfoIter = IntoIter<[<ResponseProtocol<TCodec> as UpgradeInfo>::Info; 2]>
type InfoIter = IntoIter<[<ResponseProtocol<TCodec> as UpgradeInfo>::Info; 2]>
Iterator returned by
protocol_info
.source§fn protocol_info(&self) -> Self::InfoIter
fn protocol_info(&self) -> Self::InfoIter
Returns the list of protocols that are supported. Used during the negotiation process.
Auto Trait Implementations§
impl<TCodec> !RefUnwindSafe for ResponseProtocol<TCodec>
impl<TCodec> Send for ResponseProtocol<TCodec>where TCodec: Send,
impl<TCodec> Sync for ResponseProtocol<TCodec>where TCodec: Sync, <TCodec as Codec>::Protocol: Sync,
impl<TCodec> Unpin for ResponseProtocol<TCodec>where TCodec: Unpin, <TCodec as Codec>::Protocol: Unpin,
impl<TCodec> !UnwindSafe for ResponseProtocol<TCodec>
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<C, U> InboundUpgradeExt<C> for Uwhere
U: InboundUpgrade<C>,
impl<C, U> InboundUpgradeExt<C> for Uwhere U: InboundUpgrade<C>,
source§fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F>where
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F>where Self: Sized, F: FnOnce(Self::Output) -> T,
👎Deprecated: Will be removed without replacement because it is not used within rust-libp2p.
Returns a new object that wraps around
Self
and applies a closure to the Output
.source§fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F>where
Self: Sized,
F: FnOnce(Self::Error) -> T,
fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F>where Self: Sized, F: FnOnce(Self::Error) -> T,
👎Deprecated: Will be removed without replacement because it is not used within rust-libp2p.
Returns a new object that wraps around
Self
and applies a closure to the Error
.