Struct bytecodec::bytes::RemainingBytesDecoder [] [src]

pub struct RemainingBytesDecoder(_);

RemainingBytesDecoder reads all the bytes from a input sequence until it reaches EOS.

Examples

use bytecodec::{Decode, DecodeBuf};
use bytecodec::bytes::RemainingBytesDecoder;

let mut decoder = RemainingBytesDecoder::new();
assert_eq!(decoder.requiring_bytes_hint(), None);

let mut input = DecodeBuf::new(b"foo");
let item = decoder.decode(&mut input).unwrap();
assert_eq!(item, None);
assert!(input.is_empty());
assert!(!input.is_eos());

let mut input = DecodeBuf::with_remaining_bytes(b"bar", 0);
let item = decoder.decode(&mut input).unwrap();
assert_eq!(item, Some(b"foobar".to_vec()));
assert!(input.is_empty());
assert!(input.is_eos());

Methods

impl RemainingBytesDecoder
[src]

[src]

Makes a new RemainingBytesDecoder instance.

Trait Implementations

impl Debug for RemainingBytesDecoder
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for RemainingBytesDecoder
[src]

[src]

Returns the "default value" for a type. Read more

impl Decode for RemainingBytesDecoder
[src]

The type of items to be decoded.

[src]

Consumes the given buffer (a part of a byte sequence), and decodes an item from it. Read more

[src]

Returns true if the decoder cannot decode items anymore, otherwise false. Read more

[src]

Returns true if the decoder does not have an item that being decoded, otherwise false.

[src]

Returns the lower bound of the number of bytes needed to decode the next item. Read more

Auto Trait Implementations