Trait peg_runtime::Parse [−][src]
A type that can be used as input to a parser.
A type that can be used as input to a parser.
type PositionRepr: Display[src]fn start<'input>(&'input self) -> usize[src]fn is_eof<'input>(&'input self, p: usize) -> bool[src]fn position_repr<'input>(&'input self, p: usize) -> Self::PositionRepr[src]impl<T> Parse for [T][src]type PositionRepr = usizefn start(&self) -> usize[src]fn is_eof(&self, pos: usize) -> bool[src]fn position_repr(&self, pos: usize) -> usize[src]impl Parse for str[src]type PositionRepr = LineColfn start(&self) -> usize[src]fn is_eof(&self, pos: usize) -> bool[src]fn position_repr(&self, pos: usize) -> LineCol[src]