Trait nom_bufreader::AsyncParse[][src]

pub trait AsyncParse<O, E, P> {
    fn parse<'life0, 'async_trait>(
        &'life0 mut self,
        p: P
    ) -> Pin<Box<dyn Future<Output = Result<O, Error<E>>> + Send + 'async_trait>>
    where
        for<'a> P: Parser<&'a [u8], O, E> + Send + 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementations on Foreign Types

Implementors