[][src]Struct bytecodec::fixnum::I16beEncoder

pub struct I16beEncoder(_);

Encoder which encodes i16 values by big-endian byte order.

Examples

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

let mut output = Vec::new();
let mut encoder = I16beEncoder::with_item(-2).unwrap();
encoder.encode_all(&mut output).unwrap();
assert_eq!(output, [0xFF, 0xFE]);

Methods

impl I16beEncoder[src]

pub fn new() -> Self[src]

Makes a new I16beEncoder instance.

Trait Implementations

impl Debug for I16beEncoder[src]

impl Default for I16beEncoder[src]

impl Encode for I16beEncoder[src]

type Item = i16

The type of items to be encoded.

impl SizedEncode for I16beEncoder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IoEncodeExt for T where
    T: Encode
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.