(mut self, message: impl Into<String>)
| 294 | } |
| 295 | |
| 296 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
| 297 | self.message = message.into(); |
| 298 | self |
| 299 | } |
| 300 | |
| 301 | pub fn with_labels(mut self, labels: Vec<Label<FileId>>) -> Self { |
| 302 | self.labels = labels; |