fn read_simple_string(chars: &mut Peekable<Chars<'_>>) -> Result<Arg, Error>
Expand description
Read string surrounded by single quote (’). Assumes chars is on the open quote and consumes the end quote. This simply reads the chars until the next ’ and puts them in a String Arg. Note, can not produce a string containing a ’ character.