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.

Required Associated Types

Type of a slice of the input.

Required Methods

Get a slice of input.

Implementations on Foreign Types

Implementors