(self)
| 853 | } |
| 854 | |
| 855 | fn as_any_string_flags(self) -> AnyStringFlags { |
| 856 | AnyStringFlags::new(self.prefix(), self.quote_style(), self.triple_quotes()) |
| 857 | .with_unclosed(self.is_unclosed()) |
| 858 | } |
| 859 | |
| 860 | fn display_contents(self, contents: &str) -> DisplayFlags<'_> { |
| 861 | DisplayFlags { |
no test coverage detected