Builder: set the identity.
(mut self, identity: impl Into<String>)
| 297 | |
| 298 | /// Builder: set the identity. |
| 299 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
| 300 | self.identity = Some(identity.into()); |
| 301 | self |
| 302 | } |
| 303 | |
| 304 | /// Builder: set the usage context. |
| 305 | pub fn with_usage(mut self, usage: impl Into<String>) -> Self { |
no outgoing calls