pub fn crlf<T, E: ParseError<T>>(
input: T
) -> IResult<T, <T as Stream>::Slice, E>where
T: Stream + Compare<&'static str>,👎Deprecated since 0.1.0: Replaced with <code>winnow::character::crlf</code> with input wrapped in <code>winnow::Partial</code>
Expand description
Recognizes the string “\r\n”.
Partial version: Will return Err(winnow::error::ErrMode::Incomplete(_)) if there’s not enough input data.
Example
assert_eq!(crlf::<_, Error<_>>("\r\nc"), Ok(("c", "\r\n")));
assert_eq!(crlf::<_, Error<_>>("ab\r\nc"), Err(ErrMode::Backtrack(Error::new("ab\r\nc", ErrorKind::CrLf))));
assert_eq!(crlf::<_, Error<_>>(""), Err(ErrMode::Incomplete(Needed::new(2))));WARNING: Deprecated, replaced with winnow::character::crlf with input wrapped in winnow::Partial