pub fn token<Input>(c: Input::Token) -> Token<Input> where Input: Stream, Input::Token: PartialEq,
Parses a character and succeeds if the character is equal to c.
c
let result = token('!') .parse("!") .map(|x| x.0); assert_eq!(result, Ok('!'));