Struct tet_libp2p_swarm::OneShotHandler[][src]

pub struct OneShotHandler<TInbound, TOutbound, TEvent> where
    TOutbound: OutboundUpgradeSend
{ /* fields omitted */ }

A ProtocolsHandler that opens a new substream for each request.

Implementations

impl<TInbound, TOutbound, TEvent> OneShotHandler<TInbound, TOutbound, TEvent> where
    TOutbound: OutboundUpgradeSend
[src]

pub fn new(
    listen_protocol: SubstreamProtocol<TInbound, ()>,
    config: OneShotHandlerConfig
) -> Self
[src]

Creates a OneShotHandler.

pub fn pending_requests(&self) -> u32[src]

Returns the number of pending requests.

pub fn listen_protocol_ref(&self) -> &SubstreamProtocol<TInbound, ()>[src]

Returns a reference to the listen protocol configuration.

Note: If you modify the protocol, modifications will only applies to future inbound substreams, not the ones already being negotiated.

pub fn listen_protocol_mut(&mut self) -> &mut SubstreamProtocol<TInbound, ()>[src]

Returns a mutable reference to the listen protocol configuration.

Note: If you modify the protocol, modifications will only applies to future inbound substreams, not the ones already being negotiated.

pub fn send_request(&mut self, upgrade: TOutbound)[src]

Opens an outbound substream with upgrade.

Trait Implementations

impl<TInbound, TOutbound, TEvent> Default for OneShotHandler<TInbound, TOutbound, TEvent> where
    TOutbound: OutboundUpgradeSend,
    TInbound: InboundUpgradeSend + Default
[src]

impl<TInbound, TOutbound, TEvent> ProtocolsHandler for OneShotHandler<TInbound, TOutbound, TEvent> where
    TInbound: InboundUpgradeSend + Send + 'static,
    TOutbound: OutboundUpgradeSend,
    TInbound::Output: Into<TEvent>,
    TOutbound::Output: Into<TEvent>,
    TOutbound::Error: Error + Send + 'static,
    SubstreamProtocol<TInbound, ()>: Clone,
    TEvent: Send + 'static, 
[src]

type InEvent = TOutbound

Custom event that can be received from the outside.

type OutEvent = TEvent

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = ProtocolsHandlerUpgrErr<<Self::OutboundProtocol as OutboundUpgradeSend>::Error>

The type of errors returned by ProtocolsHandler::poll.

type InboundProtocol = TInbound

The inbound upgrade for the protocol(s) used by the handler.

type OutboundProtocol = TOutbound

The outbound upgrade for the protocol(s) used by the handler.

type OutboundOpenInfo = ()

The type of additional information passed to an OutboundSubstreamRequest.

type InboundOpenInfo = ()

The type of additional information returned from listen_protocol.

Auto Trait Implementations

impl<TInbound, TOutbound, TEvent> !RefUnwindSafe for OneShotHandler<TInbound, TOutbound, TEvent>

impl<TInbound, TOutbound, TEvent> Send for OneShotHandler<TInbound, TOutbound, TEvent> where
    TEvent: Send,
    TInbound: Send

impl<TInbound, TOutbound, TEvent> Sync for OneShotHandler<TInbound, TOutbound, TEvent> where
    TEvent: Sync,
    TInbound: Sync,
    TOutbound: Sync,
    <TOutbound as OutboundUpgradeSend>::Error: Sync

impl<TInbound, TOutbound, TEvent> Unpin for OneShotHandler<TInbound, TOutbound, TEvent> where
    TEvent: Unpin,
    TInbound: Unpin,
    TOutbound: Unpin,
    <TOutbound as OutboundUpgradeSend>::Error: Unpin

impl<TInbound, TOutbound, TEvent> !UnwindSafe for OneShotHandler<TInbound, TOutbound, TEvent>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoProtocolsHandler for T where
    T: ProtocolsHandler
[src]

type Handler = T

The protocols handler.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,