Struct bytecodec::bytes::BytesEncoder[][src]

pub struct BytesEncoder<B = Vec<u8>> { /* fields omitted */ }

BytesEncoder writes the given bytes into an output byte sequence.

Examples

use bytecodec::{Encode, EncodeExt};
use bytecodec::bytes::BytesEncoder;
use bytecodec::io::IoEncodeExt;

let mut output = Vec::new();
let mut encoder = BytesEncoder::with_item(b"foo").unwrap();
encoder.encode_all(&mut output).unwrap();
assert!(encoder.is_idle());
assert_eq!(output, b"foo");

Methods

impl<B> BytesEncoder<B>
[src]

Makes a new BytesEncoder instance.

Trait Implementations

impl<B: Debug> Debug for BytesEncoder<B>
[src]

Formats the value using the given formatter. Read more

impl<B> Default for BytesEncoder<B>
[src]

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

impl<B: AsRef<[u8]>> Encode for BytesEncoder<B>
[src]

The type of items to be encoded.

Encodes the items in the encoder and writes the encoded bytes to the given buffer. Read more

Tries to start encoding the given item. Read more

Returns the number of bytes required to encode all the items in the encoder. Read more

Returns true if there are no items to be encoded in the encoder, otherwise false. Read more

impl<B: AsRef<[u8]>> SizedEncode for BytesEncoder<B>
[src]

Returns the exact number of bytes required to encode all the items remaining in the encoder.

Auto Trait Implementations

impl<B> Send for BytesEncoder<B> where
    B: Send

impl<B> Sync for BytesEncoder<B> where
    B: Sync