async-stream-packed 0.1.6

Asynchronous stream packed.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "upgradable")]
mod upgradable_ {
    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 {}
}

#[cfg(feature = "upgradable")]
pub use upgradable_::*;