Struct libp2p_swarm::handler::SubstreamProtocol
source · pub struct SubstreamProtocol<TUpgrade, TInfo> { /* private fields */ }
Expand description
Configuration of inbound or outbound substream protocol(s)
for a ConnectionHandler
.
The inbound substream protocol(s) are defined by ConnectionHandler::listen_protocol
and the outbound substream protocol(s) by ConnectionHandlerEvent::OutboundSubstreamRequest
.
Implementations§
source§impl<TUpgrade, TInfo> SubstreamProtocol<TUpgrade, TInfo>
impl<TUpgrade, TInfo> SubstreamProtocol<TUpgrade, TInfo>
sourcepub fn new(upgrade: TUpgrade, info: TInfo) -> Self
pub fn new(upgrade: TUpgrade, info: TInfo) -> Self
Create a new SubstreamProtocol
from the given upgrade.
The default timeout for applying the given upgrade on a substream is 10 seconds.
sourcepub fn map_upgrade<U, F>(self, f: F) -> SubstreamProtocol<U, TInfo>where
F: FnOnce(TUpgrade) -> U,
pub fn map_upgrade<U, F>(self, f: F) -> SubstreamProtocol<U, TInfo>where
F: FnOnce(TUpgrade) -> U,
Maps a function over the protocol upgrade.
sourcepub fn map_info<U, F>(self, f: F) -> SubstreamProtocol<TUpgrade, U>where
F: FnOnce(TInfo) -> U,
pub fn map_info<U, F>(self, f: F) -> SubstreamProtocol<TUpgrade, U>where
F: FnOnce(TInfo) -> U,
Maps a function over the protocol info.
sourcepub fn with_timeout(self, timeout: Duration) -> Self
pub fn with_timeout(self, timeout: Duration) -> Self
Sets a new timeout for the protocol upgrade.
sourcepub fn into_upgrade(self) -> (TUpgrade, TInfo)
pub fn into_upgrade(self) -> (TUpgrade, TInfo)
Converts the substream protocol configuration into the contained upgrade.
Trait Implementations§
source§impl<TUpgrade: Clone, TInfo: Clone> Clone for SubstreamProtocol<TUpgrade, TInfo>
impl<TUpgrade: Clone, TInfo: Clone> Clone for SubstreamProtocol<TUpgrade, TInfo>
source§fn clone(&self) -> SubstreamProtocol<TUpgrade, TInfo>
fn clone(&self) -> SubstreamProtocol<TUpgrade, TInfo>
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