Set maximum number of changes.
(mut self, max: u64)
| 345 | |
| 346 | /// Set maximum number of changes. |
| 347 | pub fn max_changes(mut self, max: u64) -> Self { |
| 348 | self.max_changes = Some(max); |
| 349 | self |
| 350 | } |
| 351 | |
| 352 | /// Set a description. |
| 353 | pub fn description(mut self, description: impl Into<String>) -> Self { |
no outgoing calls