pub trait Absorb<'pa> where
    Self: Sized
{ fn absorb<L>(
        input: &'pa [u8]
    ) -> IResult<&'pa [u8], Self, ParseError<&'pa [u8]>>
    where
        L: Limit
; }

Required Methods

Implementations on Foreign Types

Implementors