Set an optional description.
(mut self, description: impl Into<String>)
| 347 | |
| 348 | /// Set an optional description. |
| 349 | pub fn description(mut self, description: impl Into<String>) -> Self { |
| 350 | self.description = Some(description.into()); |
| 351 | self |
| 352 | } |
| 353 | |
| 354 | /// Set the timestamp (defaults to now if not specified). |
| 355 | pub fn timestamp(mut self, timestamp: DateTime<Utc>) -> Self { |
no outgoing calls