(&mut self, scope: &str)
| 27 | } |
| 28 | |
| 29 | pub fn set_scope(&mut self, scope: &str) { |
| 30 | self.message.push_str(&self.config.scope_prefix); |
| 31 | self.message.push_str(scope); |
| 32 | self.message.push_str(&self.config.scope_suffix); |
| 33 | } |
| 34 | |
| 35 | pub fn set_description(&mut self, description: &str) { |
| 36 | self.message.push_str(&self.config.subject_separator); |
no outgoing calls