pub trait ProtocolUpgradeSend:
UpgradeInfoSend
+ InboundUpgradeSend<Output = ProtocolUpgradeOutput<Self::Info>>
+ OutboundUpgradeSend<Output = ProtocolUpgradeOutput<Self::Info>> { }Expand description
Implemented automatically on all types that implement ProtocolUpgrade
and Send + 'static.
Do not implement this trait yourself. Instead, please implement
ProtocolUpgrade sub-traits.