Builder: set the author.
(mut self, author: impl Into<String>)
| 291 | |
| 292 | /// Builder: set the author. |
| 293 | pub fn with_author(mut self, author: impl Into<String>) -> Self { |
| 294 | self.author = Some(author.into()); |
| 295 | self |
| 296 | } |
| 297 | |
| 298 | /// Builder: set the identity. |
| 299 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls