Check if this line contains binary (non-UTF8) content.
(&self)
| 176 | |
| 177 | /// Check if this line contains binary (non-UTF8) content. |
| 178 | pub fn is_binary(&self) -> bool { |
| 179 | self.content.is_empty() && !self.raw.is_empty() |
| 180 | } |
| 181 | |
| 182 | /// Get a display-friendly representation of the content. |
| 183 | /// |
no test coverage detected