pub trait Parser: Sized {
    // Required method
    fn parse(input: &str) -> IResult<&str, Self>;
}

Required Methods§

source

fn parse(input: &str) -> IResult<&str, Self>

Implementors§