[][src]Trait libp2p_swarm::protocols_handler::UpgradeInfoSend

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

Equivalent to UpgradeInfo::Info.

type InfoIter: Iterator<Item = Self::Info> + Send + 'static

Equivalent to UpgradeInfo::InfoIter.

Loading content...

Required methods

fn protocol_info(&self) -> Self::InfoIter

Loading content...

Implementors

impl<T> UpgradeInfoSend for T where
    T: UpgradeInfo + Send + 'static,
    T::Info: Send + 'static,
    <T::InfoIter as IntoIterator>::IntoIter: Send + 'static, 
[src]

type Info = T::Info

type InfoIter = <T::InfoIter as IntoIterator>::IntoIter

Loading content...