hyper::upgrade

Trait Io

Source
pub(crate) trait Io:
    Read
    + Write
    + 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: Read + Write + Unpin + 'static> Io for T