[][src]Function nom::bytes::complete::take_until

pub fn take_until<T, Input, Error: ParseError<Input>>(
    tag: T
) -> impl Fn(Input) -> IResult<Input, Input, Error> where
    Input: InputTake + FindSubstring<T>,
    T: InputLength + Clone