(&self)
| 48 | fn source_len(&self) -> usize; |
| 49 | fn layout(&self) -> &EscapeLayout; |
| 50 | fn changed(&self) -> bool { |
| 51 | self.layout().len != Some(self.source_len()) |
| 52 | } |
| 53 | |
| 54 | /// Write the body of the string directly to the formatter. |
| 55 | /// |
no test coverage detected