Builder: set the author.
(mut self, author: impl Into<String>)
| 283 | |
| 284 | /// Builder: set the author. |
| 285 | pub fn with_author(mut self, author: impl Into<String>) -> Self { |
| 286 | self.author = Some(author.into()); |
| 287 | self |
| 288 | } |
| 289 | |
| 290 | /// Builder: set the identity. |
| 291 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls