Struct tetsy_libp2p::gossipsub::protocol::ProtocolConfig[][src]

pub struct ProtocolConfig { /* fields omitted */ }

Implementation of InboundUpgrade and OutboundUpgrade for the Gossipsub protocol.

Implementations

impl ProtocolConfig[src]

pub fn new(
    id_prefix: Cow<'static, str>,
    max_transmit_size: usize,
    validation_mode: ValidationMode,
    support_floodsub: bool
) -> ProtocolConfig
[src]

Builds a new ProtocolConfig.

Sets the maximum gossip transmission size.

Trait Implementations

impl Clone for ProtocolConfig[src]

impl<TSocket> InboundUpgrade<TSocket> for ProtocolConfig where
    TSocket: AsyncRead + AsyncWrite + Unpin + Send + 'static, 
[src]

type Output = (Framed<TSocket, GossipsubCodec>, PeerKind)

Output after the upgrade has been successfully negotiated and the handshake performed.

type Error = GossipsubHandlerError

Possible error during the handshake.

type Future = Pin<Box<dyn Future<Output = Result<<ProtocolConfig as InboundUpgrade<TSocket>>::Output, <ProtocolConfig as InboundUpgrade<TSocket>>::Error>> + 'static + Send, Global>>

Future that performs the handshake with the remote.

impl<TSocket> OutboundUpgrade<TSocket> for ProtocolConfig where
    TSocket: AsyncWrite + AsyncRead + Unpin + Send + 'static, 
[src]

type Output = (Framed<TSocket, GossipsubCodec>, PeerKind)

Output after the upgrade has been successfully negotiated and the handshake performed.

type Error = GossipsubHandlerError

Possible error during the handshake.

type Future = Pin<Box<dyn Future<Output = Result<<ProtocolConfig as OutboundUpgrade<TSocket>>::Output, <ProtocolConfig as OutboundUpgrade<TSocket>>::Error>> + 'static + Send, Global>>

Future that performs the handshake with the remote.

impl UpgradeInfo for ProtocolConfig[src]

type Info = ProtocolId

Opaque type representing a negotiable protocol.

type InfoIter = Vec<<ProtocolConfig as UpgradeInfo>::Info, Global>

Iterator returned by protocol_info.

Auto Trait Implementations

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<C, U> InboundUpgradeExt<C> for U where
    U: InboundUpgrade<C>, 
[src]

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

impl<C, U> OutboundUpgradeExt<C> for U where
    U: OutboundUpgrade<C>, 
[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>,