Add an author.
(mut self, author: Author)
| 359 | |
| 360 | /// Add an author. |
| 361 | pub fn author(mut self, author: Author) -> Self { |
| 362 | self.authors.push(author); |
| 363 | self |
| 364 | } |
| 365 | |
| 366 | /// Add multiple authors. |
| 367 | pub fn authors(mut self, authors: impl IntoIterator<Item = Author>) -> Self { |