Struct bytecodec::bytes::Utf8Encoder[][src]

pub struct Utf8Encoder<S = String>(_);

Utf8Encoder writes the given Rust string into an output byte sequence.

Examples

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

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

Methods

impl<S> Utf8Encoder<S>
[src]

Makes a new Utf8Encoder instance.

Trait Implementations

impl<S: Debug> Debug for Utf8Encoder<S>
[src]

Formats the value using the given formatter. Read more

impl<S> Default for Utf8Encoder<S>
[src]

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

impl<S: AsRef<str>> Encode for Utf8Encoder<S>
[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<S: AsRef<str>> SizedEncode for Utf8Encoder<S>
[src]

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

Auto Trait Implementations

impl<S> Send for Utf8Encoder<S> where
    S: Send

impl<S> Sync for Utf8Encoder<S> where
    S: Sync