| 67 | |
| 68 | |
| 69 | pub trait Parse<I: Input> |
| 70 | { |
| 71 | type Output; |
| 72 | |
| 73 | fn parse(input: &I, current: I::Pos, context: &ParseContext) -> ResultOf<I, Self::Output>; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | pub trait Predicate<T> |
nothing calls this directly
no outgoing calls
no test coverage detected