Struct bytecodec::fixnum::U56leEncoder[][src]

pub struct U56leEncoder(_);

Encoder which encodes unsigned 56-bit integers by little-endian byte order.

Although the type of items is u64, the most significant 8-bits must be 0.

Examples

use bytecodec::EncodeExt;
use bytecodec::fixnum::U56leEncoder;
use bytecodec::io::IoEncodeExt;

let mut output = Vec::new();
let mut encoder = U56leEncoder::with_item(0x0001_0203_0405_0607).unwrap();
encoder.encode_all(&mut output).unwrap();
assert_eq!(output, [0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01]);

Methods

impl U56leEncoder
[src]

Makes a new U56leEncoder instance.

Trait Implementations

impl Debug for U56leEncoder
[src]

Formats the value using the given formatter. Read more

impl Default for U56leEncoder
[src]

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

impl Encode for U56leEncoder
[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 SizedEncode for U56leEncoder
[src]

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

Auto Trait Implementations