async-stream-packed 0.1.7

Asynchronous stream packed.
Documentation
1
2
3
4
5
6
7
8
9
use crate::upgradable::Upgrader;

pub trait TlsClientUpgrader<S>: Upgrader<S> {}

impl<S> TlsClientUpgrader<S> for () where S: Send + 'static {}

pub trait TlsServerUpgrader<S>: Upgrader<S> {}

impl<S> TlsServerUpgrader<S> for () where S: Send + 'static {}