Set the duration.
(mut self, ms: u64)
| 611 | |
| 612 | /// Set the duration. |
| 613 | pub fn with_duration(mut self, ms: u64) -> Self { |
| 614 | self.duration_ms = ms; |
| 615 | self |
| 616 | } |
| 617 | |
| 618 | /// Add a warning. |
| 619 | pub fn with_warning(mut self, warning: impl Into<String>) -> Self { |