Function eof
fn eof<I: Input + Clone, E: ParseError<I>>(input: I) -> IResult<I, I, E>
returns its input if it is at the end of input data
When we're at the end of the data, this combinator will succeed
# use str;
# use ;
# use eof;
#