(&self)
| 729 | } |
| 730 | |
| 731 | pub fn label(&self) -> Option<String> { |
| 732 | let mut result = String::new(); |
| 733 | self.write_label(&mut result).unwrap().then_some(result) |
| 734 | } |
| 735 | |
| 736 | pub fn has_label(&self) -> bool { |
| 737 | if self.data().label().is_some() { |
no test coverage detected