Struct ConnectionHandlerSelect
pub struct ConnectionHandlerSelect<TProto1, TProto2> { /* private fields */ }
Expand description
Implementation of ConnectionHandler
that combines two protocols into one.
Implementations§
§impl<TProto1, TProto2> ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> ConnectionHandlerSelect<TProto1, TProto2>
pub fn into_inner(self) -> (TProto1, TProto2)
Trait Implementations§
§impl<TProto1, TProto2> Clone for ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> Clone for ConnectionHandlerSelect<TProto1, TProto2>
§fn clone(&self) -> ConnectionHandlerSelect<TProto1, TProto2>
fn clone(&self) -> ConnectionHandlerSelect<TProto1, TProto2>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<TProto1, TProto2> ConnectionHandler for ConnectionHandlerSelect<TProto1, TProto2>where
TProto1: ConnectionHandler,
TProto2: ConnectionHandler,
impl<TProto1, TProto2> ConnectionHandler for ConnectionHandlerSelect<TProto1, TProto2>where
TProto1: ConnectionHandler,
TProto2: ConnectionHandler,
§type FromBehaviour = Either<<TProto1 as ConnectionHandler>::FromBehaviour, <TProto2 as ConnectionHandler>::FromBehaviour>
type FromBehaviour = Either<<TProto1 as ConnectionHandler>::FromBehaviour, <TProto2 as ConnectionHandler>::FromBehaviour>
A type representing the message(s) a
NetworkBehaviour
can send to a ConnectionHandler
via ToSwarm::NotifyHandler
§type ToBehaviour = Either<<TProto1 as ConnectionHandler>::ToBehaviour, <TProto2 as ConnectionHandler>::ToBehaviour>
type ToBehaviour = Either<<TProto1 as ConnectionHandler>::ToBehaviour, <TProto2 as ConnectionHandler>::ToBehaviour>
A type representing message(s) a
ConnectionHandler
can send to a NetworkBehaviour
via ConnectionHandlerEvent::NotifyBehaviour
.§type InboundProtocol = SelectUpgrade<SendWrapper<<TProto1 as ConnectionHandler>::InboundProtocol>, SendWrapper<<TProto2 as ConnectionHandler>::InboundProtocol>>
type InboundProtocol = SelectUpgrade<SendWrapper<<TProto1 as ConnectionHandler>::InboundProtocol>, SendWrapper<<TProto2 as ConnectionHandler>::InboundProtocol>>
The inbound upgrade for the protocol(s) used by the handler.
§type OutboundProtocol = Either<SendWrapper<<TProto1 as ConnectionHandler>::OutboundProtocol>, SendWrapper<<TProto2 as ConnectionHandler>::OutboundProtocol>>
type OutboundProtocol = Either<SendWrapper<<TProto1 as ConnectionHandler>::OutboundProtocol>, SendWrapper<<TProto2 as ConnectionHandler>::OutboundProtocol>>
The outbound upgrade for the protocol(s) used by the handler.
§type OutboundOpenInfo = Either<<TProto1 as ConnectionHandler>::OutboundOpenInfo, <TProto2 as ConnectionHandler>::OutboundOpenInfo>
type OutboundOpenInfo = Either<<TProto1 as ConnectionHandler>::OutboundOpenInfo, <TProto2 as ConnectionHandler>::OutboundOpenInfo>
The type of additional information passed to an
OutboundSubstreamRequest
.§type InboundOpenInfo = (<TProto1 as ConnectionHandler>::InboundOpenInfo, <TProto2 as ConnectionHandler>::InboundOpenInfo)
type InboundOpenInfo = (<TProto1 as ConnectionHandler>::InboundOpenInfo, <TProto2 as ConnectionHandler>::InboundOpenInfo)
The type of additional information returned from
listen_protocol
.§fn listen_protocol(
&self,
) -> SubstreamProtocol<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundOpenInfo>
fn listen_protocol( &self, ) -> SubstreamProtocol<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundOpenInfo>
The
InboundUpgrade
to apply on inbound
substreams to negotiate the desired protocols. Read more§fn on_behaviour_event(
&mut self,
event: <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::FromBehaviour,
)
fn on_behaviour_event( &mut self, event: <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::FromBehaviour, )
Informs the handler about an event from the
NetworkBehaviour
.§fn connection_keep_alive(&self) -> bool
fn connection_keep_alive(&self) -> bool
Returns whether the connection should be kept alive. Read more
§fn poll(
&mut self,
cx: &mut Context<'_>,
) -> Poll<ConnectionHandlerEvent<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundOpenInfo, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::ToBehaviour>>
fn poll( &mut self, cx: &mut Context<'_>, ) -> Poll<ConnectionHandlerEvent<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundOpenInfo, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::ToBehaviour>>
Should behave like
Stream::poll()
.§fn poll_close(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Option<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::ToBehaviour>>
fn poll_close( &mut self, cx: &mut Context<'_>, ) -> Poll<Option<<ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::ToBehaviour>>
Gracefully close the
ConnectionHandler
. Read morefn on_connection_event( &mut self, event: ConnectionEvent<'_, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundProtocol, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::InboundOpenInfo, <ConnectionHandlerSelect<TProto1, TProto2> as ConnectionHandler>::OutboundOpenInfo>, )
§fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap>
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap>
Adds a closure that turns the input event into something else.
§fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap>
fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap>
Adds a closure that turns the output event into something else.
§fn select<TProto2>(
self,
other: TProto2,
) -> ConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
fn select<TProto2>(
self,
other: TProto2,
) -> ConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
Creates a new
ConnectionHandler
that selects either this handler or
other
by delegating methods calls appropriately.Auto Trait Implementations§
impl<TProto1, TProto2> Freeze for ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> RefUnwindSafe for ConnectionHandlerSelect<TProto1, TProto2>where
TProto1: RefUnwindSafe,
TProto2: RefUnwindSafe,
impl<TProto1, TProto2> Send for ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> Sync for ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> Unpin for ConnectionHandlerSelect<TProto1, TProto2>
impl<TProto1, TProto2> UnwindSafe for ConnectionHandlerSelect<TProto1, TProto2>where
TProto1: UnwindSafe,
TProto2: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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