[−][src]Function combine::parser::byte::take_until_byte2
pub fn take_until_byte2<I>(a: u8, b: u8) -> TakeUntilByte2<I> where
<I as StreamOnce>::Error: ParseError<<I as StreamOnce>::Item, <I as StreamOnce>::Range, <I as StreamOnce>::Position>,
I: RangeStream + FullRangeStream,
I::Range: AsRef<[u8]> + Range,
Zero-copy parser which reads a range of 0 or more tokens until a
or b
is found.
If a
or b
is not found, the parser will return an error.
let mut parser = take_until_byte2(b'\r', b'\n'); let result = parser.parse("To: user@example.com\r\n"); assert_eq!(result, Ok(("To: user@example.com", "\r\n"))); let result = parser.parse("Hello, world\n"); assert_eq!(result, Ok(("Hello, world", "\n")));