pub trait TransportChannelReadExt {
    fn read_to_end(self) -> MustBoxFuture<'static, Vec<u8>>;
}
Expand description

Extension trait for channel readers

Required methods

Read the stream to close into a single byte vec.

Implementors