Set the timestamp (defaults to now if not specified).
(mut self, timestamp: DateTime<Utc>)
| 353 | |
| 354 | /// Set the timestamp (defaults to now if not specified). |
| 355 | pub fn timestamp(mut self, timestamp: DateTime<Utc>) -> Self { |
| 356 | self.timestamp = Some(timestamp); |
| 357 | self |
| 358 | } |
| 359 | |
| 360 | /// Add an author. |
| 361 | pub fn author(mut self, author: Author) -> Self { |
no outgoing calls