Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 203 | |
| 204 | /// Builder: set the timeout in seconds. |
| 205 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 206 | self.timeout = timeout; |
| 207 | self |
| 208 | } |
| 209 | |
| 210 | /// Builder: set an explicit identity name override. |
| 211 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls