pub trait AsyncReadThrift: Send + Sized {
    fn stream_from_in_protocol<'life0, 'async_trait, T>(
        i_prot: &'life0 mut T
    ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
    where
        T: 'async_trait + TInputStreamProtocol,
        Self: 'async_trait,
        'life0: 'async_trait
; }
Available on crate feature async only.

Required Methods§

Implementations on Foreign Types§

Implementors§