Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 326 | |
| 327 | /// Builder: set the timeout in seconds. |
| 328 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 329 | self.timeout = timeout; |
| 330 | self |
| 331 | } |
| 332 | |
| 333 | /// Builder: set an explicit identity name override. |
| 334 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls