Trait thrift_codec::BinaryDecode [] [src]

pub trait BinaryDecode: Sized {
    fn binary_decode<R: Read>(reader: &mut R) -> Result<Self>;
}

This trait allows to decode objects which encoded by the Thrift Binary protocol encoding.

Required Methods

Decodes an object.

Implementations on Foreign Types

impl BinaryDecode for bool
[src]

[src]

impl BinaryDecode for i8
[src]

[src]

impl BinaryDecode for i16
[src]

[src]

impl BinaryDecode for i32
[src]

[src]

impl BinaryDecode for i64
[src]

[src]

impl BinaryDecode for f64
[src]

[src]

impl BinaryDecode for Vec<u8>
[src]

[src]

Implementors