pub fn crlf<T, E: ParseError<T>, const STREAMING: bool>(
input: T
) -> IResult<T, <T as IntoOutput>::Output, E>where
T: Slice<Range<usize>> + Slice<RangeFrom<usize>> + Slice<RangeTo<usize>> + InputIter + InputIsStreaming<STREAMING> + IntoOutput + Compare<&'static str>,
Expand description
Recognizes the string “\r\n”.
Complete version: Will return an error if there’s not enough input data.
Streaming version: Will return Err(nom8::Err::Incomplete(_))
if there’s not enough input data.
Example
fn parser(input: &str) -> IResult<&str, &str> {
crlf(input)
}
assert_eq!(parser("\r\nc"), Ok(("c", "\r\n")));
assert_eq!(parser("ab\r\nc"), Err(Err::Error(Error::new("ab\r\nc", ErrorKind::CrLf))));
assert_eq!(parser(""), Err(Err::Error(Error::new("", ErrorKind::CrLf))));
assert_eq!(crlf::<_, (_, ErrorKind), true>(Streaming("\r\nc")), Ok((Streaming("c"), "\r\n")));
assert_eq!(crlf::<_, (_, ErrorKind), true>(Streaming("ab\r\nc")), Err(Err::Error((Streaming("ab\r\nc"), ErrorKind::CrLf))));
assert_eq!(crlf::<_, (_, ErrorKind), true>(Streaming("")), Err(Err::Incomplete(Needed::new(2))));