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