(mut self, timestamp: DateTime<Utc>)
| 369 | /// Set the timestamp. |
| 370 | #[must_use] |
| 371 | pub fn with_timestamp(mut self, timestamp: DateTime<Utc>) -> Self { |
| 372 | self.timestamp = timestamp; |
| 373 | self |
| 374 | } |
| 375 | |
| 376 | /// Attach the raw JSON input for debugging. |
| 377 | #[must_use] |
no outgoing calls