Set the role/identity.
(mut self, role: impl Into<String>)
| 558 | |
| 559 | /// Set the role/identity. |
| 560 | pub fn with_role(mut self, role: impl Into<String>) -> Self { |
| 561 | self.role = Some(role.into()); |
| 562 | self |
| 563 | } |
| 564 | |
| 565 | /// Set custom guidelines. |
| 566 | pub fn with_guidelines(mut self, guidelines: impl Into<String>) -> Self { |
no outgoing calls