Function abnf_core::complete::CRLF[][src]

pub fn CRLF<'a, E: ParseError<&'a str>>(
    input: &'a str
) -> IResult<&'a str, &str, E>

CRLF = CR LF ; Internet standard newline

Note: this variant will strictly expect “\r\n”. Use crlf_relaxed to accept “\r\n” as well as only “\n”.