Function anychar
fn anychar<T, E: ParseError<T>>(input: T) -> crate::internal::IResult<T, char, E>
where
T: Input,
<T as Input>::Item: AsChar
Matches one byte as a character. Note that the input type will
accept a str, but not a &[u8], unlike many other nom parsers.
Complete version: Will return an error if there's not enough input data.
Example
# use ;
assert_eq!;
assert_eq!;