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