Trait peg_runtime::ParseSlice[][src]

pub trait ParseSlice<'input>: Parse {
    type Slice;
    fn parse_slice(&'input self, p1: usize, p2: usize) -> Self::Slice;
}
Expand description

A parser input type supporting the $() syntax.

Associated Types

Type of a slice of the input.

Required methods

Get a slice of input.

Implementations on Foreign Types

Implementors