Struct libp2p_request_response::handler::RequestProtocol
source · pub struct RequestProtocol<TCodec>where
TCodec: Codec,{ /* private fields */ }
Expand description
Request substream upgrade protocol.
Sends a request and receives a response.
Trait Implementations§
source§impl<TCodec> Debug for RequestProtocol<TCodec>where
TCodec: Codec,
impl<TCodec> Debug for RequestProtocol<TCodec>where TCodec: Codec,
source§impl<TCodec> OutboundUpgrade<Negotiated<SubstreamBox>> for RequestProtocol<TCodec>where
TCodec: Codec + Send + 'static,
impl<TCodec> OutboundUpgrade<Negotiated<SubstreamBox>> for RequestProtocol<TCodec>where TCodec: Codec + Send + 'static,
§type Output = <TCodec as Codec>::Response
type Output = <TCodec as Codec>::Response
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = Pin<Box<dyn Future<Output = Result<<RequestProtocol<TCodec> as OutboundUpgrade<Negotiated<SubstreamBox>>>::Output, <RequestProtocol<TCodec> as OutboundUpgrade<Negotiated<SubstreamBox>>>::Error>> + Send + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<RequestProtocol<TCodec> as OutboundUpgrade<Negotiated<SubstreamBox>>>::Output, <RequestProtocol<TCodec> as OutboundUpgrade<Negotiated<SubstreamBox>>>::Error>> + Send + 'static, Global>>
Future that performs the handshake with the remote.
source§fn upgrade_outbound(
self,
io: NegotiatedSubstream,
protocol: Self::Info
) -> Self::Future
fn upgrade_outbound( 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 RequestProtocol<TCodec>where
TCodec: Codec,
impl<TCodec> UpgradeInfo for RequestProtocol<TCodec>where TCodec: Codec,
§type InfoIter = IntoIter<[<RequestProtocol<TCodec> as UpgradeInfo>::Info; 2]>
type InfoIter = IntoIter<[<RequestProtocol<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 RequestProtocol<TCodec>where TCodec: RefUnwindSafe, <TCodec as Codec>::Protocol: RefUnwindSafe, <TCodec as Codec>::Request: RefUnwindSafe,
impl<TCodec> Send for RequestProtocol<TCodec>where TCodec: Send,
impl<TCodec> Sync for RequestProtocol<TCodec>where TCodec: Sync, <TCodec as Codec>::Protocol: Sync, <TCodec as Codec>::Request: Sync,
impl<TCodec> Unpin for RequestProtocol<TCodec>where TCodec: Unpin, <TCodec as Codec>::Protocol: Unpin, <TCodec as Codec>::Request: Unpin,
impl<TCodec> UnwindSafe for RequestProtocol<TCodec>where TCodec: UnwindSafe, <TCodec as Codec>::Protocol: UnwindSafe + RefUnwindSafe, <TCodec as Codec>::Request: UnwindSafe,
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> OutboundUpgradeExt<C> for Uwhere
U: OutboundUpgrade<C>,
impl<C, U> OutboundUpgradeExt<C> for Uwhere U: OutboundUpgrade<C>,
source§fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F>where
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<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_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F>where
Self: Sized,
F: FnOnce(Self::Error) -> T,
fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<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
.