pub trait ProtocolUpgradeSend:
UpgradeInfoSend
+ InboundUpgradeSend<Output = ProtocolUpgradeOutput<<Self as UpgradeInfoSend>::Info>>
+ OutboundUpgradeSend<Output = ProtocolUpgradeOutput<<Self as UpgradeInfoSend>::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.