fn read_word(s: &str) -> Result<Option<(&str, &str)>, BrokenQuote>Expand description
Read the next word in a OpenWRT config line. Strip any surrounding quotation marks.
Returns
- a tuple
Some((word, remaining_line))if found, Noneif the line is exhausted, orErr(BrokenQuote)if the line could not be parsed.