Struct async_byteorder::DecodeU8
[−]
[src]
pub struct DecodeU8<R> { /* fields omitted */ }Decode a u8.
Trait Implementations
impl<R: AsyncRead> AsyncDecode<R> for DecodeByte<R>[src]
type Item = u8
The type of the value to decode.
type Error = Never
An error indicating how decoding can fail.
fn poll_decode(
&mut self,
cx: &mut Context,
reader: &mut R
) -> Poll<(Option<Self::Item>, usize), DecodeError<Self::Error>>[src]
&mut self,
cx: &mut Context,
reader: &mut R
) -> Poll<(Option<Self::Item>, usize), DecodeError<Self::Error>>
Call reader.poll_read exactly once, propgating any Err and Pending, and return how many bytes have been read, as well as the decoded value, once decoding is done. Read more