Function parse_string

Source
pub fn parse_string<'i, I, E>(
    delim: char,
) -> impl Fn(&'i I) -> IResult<&'i I, Cow<'i, [u8]>, E>
Expand description

Parse a string. Use a loop of parse_fragment and push all of the fragments into an output string.