Trait libp2p_swarm::protocols_handler::UpgradeInfoSend [−][src]
pub trait UpgradeInfoSend: Send + 'static { type Info: ProtocolName + Clone + Send + 'static; type InfoIter: Iterator<Item = Self::Info> + Send + 'static; fn protocol_info(&self) -> Self::InfoIter; }
Implemented automatically on all types that implement UpgradeInfo
and Send + 'static
.
Do not implement this trait yourself. Instead, please implement
UpgradeInfo
.
Associated Types
type Info: ProtocolName + Clone + Send + 'static
[src]
Equivalent to UpgradeInfo::Info
.
type InfoIter: Iterator<Item = Self::Info> + Send + 'static
[src]
Equivalent to UpgradeInfo::InfoIter
.
Required methods
fn protocol_info(&self) -> Self::InfoIter
[src]
Equivalent to UpgradeInfo::protocol_info
.
Implementors
impl<K, H> UpgradeInfoSend for Upgrade<K, H> where
H: UpgradeInfoSend,
K: Send + 'static,
[src]
impl<K, H> UpgradeInfoSend for Upgrade<K, H> where
H: UpgradeInfoSend,
K: Send + 'static,
[src]type Info = IndexedProtoName<H::Info>
type InfoIter = IntoIter<Self::Info>
fn protocol_info(&self) -> Self::InfoIter
[src]
impl<T> UpgradeInfoSend for T where
T: UpgradeInfo + Send + 'static,
T::Info: Send + 'static,
<T::InfoIter as IntoIterator>::IntoIter: Send + 'static,
[src]
impl<T> UpgradeInfoSend for T where
T: UpgradeInfo + Send + 'static,
T::Info: Send + 'static,
<T::InfoIter as IntoIterator>::IntoIter: Send + 'static,
[src]