(&mut self, description: &str)
| 33 | } |
| 34 | |
| 35 | pub fn set_description(&mut self, description: &str) { |
| 36 | self.message.push_str(&self.config.subject_separator); |
| 37 | self.message.push_str(description); |
| 38 | } |
| 39 | |
| 40 | pub fn set_body(&mut self, body: &str) { |
| 41 | self.message.push_str(format!("\n\n{body}").as_str()); |
no outgoing calls