Does the string have a `b` or `B` prefix?
(self)
| 4503 | |
| 4504 | /// Does the string have a `b` or `B` prefix? |
| 4505 | pub const fn is_byte_string(self) -> bool { |
| 4506 | self.0.contains(AnyStringFlagsInner::B_PREFIX) |
| 4507 | } |
| 4508 | |
| 4509 | #[must_use] |
| 4510 | pub fn with_triple_quotes(mut self) -> Self { |
no test coverage detected