Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 246 | |
| 247 | /// Builder: set the timeout in seconds. |
| 248 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 249 | self.timeout = timeout; |
| 250 | self |
| 251 | } |
| 252 | |
| 253 | /// Builder: set an explicit identity name override. |
| 254 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls