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]

[src]

Makes a new Utf8Encoder instance.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<S: AsRef<str>> Encode for Utf8Encoder<S>
[src]

The type of items to be encoded.

[src]

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

[src]

Tries to start encoding the given item. Read more

[src]

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

[src]

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

impl<S: AsRef<str>> ExactBytesEncode for Utf8Encoder<S>
[src]

[src]

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

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

[src]

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

Auto Trait Implementations

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

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