[][src]Enum libp2p::swarm::protocols_handler::ProtocolsHandlerEvent

pub enum ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> {
    OutboundSubstreamRequest {
        protocol: SubstreamProtocol<TConnectionUpgrade>,
        info: TOutboundOpenInfo,
    },
    Close(TErr),
    Custom(TCustom),
}

Event produced by a handler.

Variants

OutboundSubstreamRequest

Request a new outbound substream to be opened with the remote.

Fields of OutboundSubstreamRequest

protocol: SubstreamProtocol<TConnectionUpgrade>

The protocol(s) to apply on the substream.

info: TOutboundOpenInfo

User-defined information, passed back when the substream is open.

Close(TErr)

Close the connection for the given reason.

Custom(TCustom)

Other event.

Methods

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr>[src]

Event produced by a handler.

pub fn map_outbound_open_info<F, I>(
    self,
    map: F
) -> ProtocolsHandlerEvent<TConnectionUpgrade, I, TCustom, TErr> where
    F: FnOnce(TOutboundOpenInfo) -> I, 
[src]

If this is an OutboundSubstreamRequest, maps the info member from a TOutboundOpenInfo to something else.

pub fn map_protocol<F, I>(
    self,
    map: F
) -> ProtocolsHandlerEvent<I, TOutboundOpenInfo, TCustom, TErr> where
    F: FnOnce(TConnectionUpgrade) -> I, 
[src]

If this is an OutboundSubstreamRequest, maps the protocol (TConnectionUpgrade) to something else.

pub fn map_custom<F, I>(
    self,
    map: F
) -> ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, I, TErr> where
    F: FnOnce(TCustom) -> I, 
[src]

If this is a Custom event, maps the content to something else.

pub fn map_close<F, I>(
    self,
    map: F
) -> ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, I> where
    F: FnOnce(TErr) -> I, 
[src]

If this is a Close event, maps the content to something else.

Trait Implementations

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Clone for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Clone,
    TCustom: Clone,
    TErr: Clone,
    TOutboundOpenInfo: Clone
[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Copy for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Copy,
    TCustom: Copy,
    TErr: Copy,
    TOutboundOpenInfo: Copy
[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Debug for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Debug,
    TCustom: Debug,
    TErr: Debug,
    TOutboundOpenInfo: Debug
[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Eq for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Eq,
    TCustom: Eq,
    TErr: Eq,
    TOutboundOpenInfo: Eq
[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> PartialEq<ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr>> for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: PartialEq<TConnectionUpgrade>,
    TCustom: PartialEq<TCustom>,
    TErr: PartialEq<TErr>,
    TOutboundOpenInfo: PartialEq<TOutboundOpenInfo>, 
[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> StructuralEq for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr>[src]

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> StructuralPartialEq for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr>[src]

Auto Trait Implementations

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> RefUnwindSafe for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: RefUnwindSafe,
    TCustom: RefUnwindSafe,
    TErr: RefUnwindSafe,
    TOutboundOpenInfo: RefUnwindSafe

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Send for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Send,
    TCustom: Send,
    TErr: Send,
    TOutboundOpenInfo: Send

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Sync for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Sync,
    TCustom: Sync,
    TErr: Sync,
    TOutboundOpenInfo: Sync

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> Unpin for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: Unpin,
    TCustom: Unpin,
    TErr: Unpin,
    TOutboundOpenInfo: Unpin

impl<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> UnwindSafe for ProtocolsHandlerEvent<TConnectionUpgrade, TOutboundOpenInfo, TCustom, TErr> where
    TConnectionUpgrade: UnwindSafe,
    TCustom: UnwindSafe,
    TErr: UnwindSafe,
    TOutboundOpenInfo: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,