pub trait Parse<T> {
    fn parse(&mut self) -> PResult<T>;
}

Required methods

Implementors