Set the change message (required).
(mut self, message: impl Into<String>)
| 341 | impl ChangeHeaderBuilder { |
| 342 | /// Set the change message (required). |
| 343 | pub fn message(mut self, message: impl Into<String>) -> Self { |
| 344 | self.message = Some(message.into()); |
| 345 | self |
| 346 | } |
| 347 | |
| 348 | /// Set an optional description. |
| 349 | pub fn description(mut self, description: impl Into<String>) -> Self { |
no outgoing calls