pub trait QuotedStringExt {
// Required method
fn quote_state_char_indices(&self) -> QuoteStateCharIndices<'_> ⓘ;
// Provided methods
fn quoted_ranges(&self) -> QuotedRanges<'_> ⓘ { ... }
fn is_quoted(&self) -> bool { ... }
}
Expand description
Helpers for iterating over quoted strings
Required Methods§
Sourcefn quote_state_char_indices(&self) -> QuoteStateCharIndices<'_> ⓘ
fn quote_state_char_indices(&self) -> QuoteStateCharIndices<'_> ⓘ
Returns an iterator of characters, indices and their quoted string state.
Provided Methods§
Sourcefn quoted_ranges(&self) -> QuotedRanges<'_> ⓘ
fn quoted_ranges(&self) -> QuotedRanges<'_> ⓘ
Returns an iterator of quoted string ranges.