Trait hyper::upgrade::Io

source ·
pub(crate) trait Io: AsyncRead + AsyncWrite + Unpin + 'static {
    // Provided method
    fn __hyper_type_id(&self) -> TypeId { ... }
}

Provided Methods§

Implementations§

source§

impl dyn Io + Send

source

fn __hyper_is<T: Io>(&self) -> bool

source

fn __hyper_downcast<T: Io>(self: Box<Self>) -> Result<Box<T>, Box<Self>>

Implementors§

source§

impl<T: AsyncRead + AsyncWrite + Unpin + 'static> Io for T