Builder: set the message.
(mut self, message: impl Into<String>)
| 260 | |
| 261 | /// Builder: set the message. |
| 262 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
| 263 | self.message = Some(message.into()); |
| 264 | self |
| 265 | } |
| 266 | |
| 267 | /// Builder: set the reword flag. |
| 268 | pub fn with_reword(mut self, reword: bool) -> Self { |
no outgoing calls