Does the string have a `b` or `B` prefix?
(self)
| 2301 | |
| 2302 | /// Does the string have a `b` or `B` prefix? |
| 2303 | pub const fn is_byte_string(self) -> bool { |
| 2304 | self.0.contains(AnyStringFlagsInner::B_PREFIX) |
| 2305 | } |
| 2306 | |
| 2307 | #[must_use] |
| 2308 | pub fn with_quote_style(mut self, quotes: Quote) -> Self { |
no test coverage detected