Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 215 | |
| 216 | /// Builder: set the timeout in seconds. |
| 217 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 218 | self.timeout = timeout; |
| 219 | self |
| 220 | } |
| 221 | |
| 222 | /// Builder: set an explicit identity name override. |
| 223 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls