pub trait PollableInputStreamExt: 'static {
    fn can_poll(&self) -> bool;
    fn is_readable(&self) -> bool;
}

Required methods

Implementors