Other info.
(mut self, info: S)
| 122 | |
| 123 | /// Other info. |
| 124 | pub fn other_info<S: AsRef<str>>(mut self, info: S) -> Self { |
| 125 | self.params.other_info = info.as_ref().to_string(); |
| 126 | self |
| 127 | } |
| 128 | |
| 129 | pub fn timeout(mut self, timeout: usize) -> Self { |
| 130 | self.params.timeout = timeout; |
nothing calls this directly
no outgoing calls
no test coverage detected