pub trait ReadThrift: Sized {
    fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors