(mut self, token: impl Into<String>)
| 94 | } |
| 95 | |
| 96 | pub fn bearer_token(mut self, token: impl Into<String>) -> Self { |
| 97 | self.bearer_token = Some(token.into()); |
| 98 | self |
| 99 | } |
| 100 | |
| 101 | pub fn request_timeout(mut self, timeout: Duration) -> Self { |
| 102 | self.request_timeout = Some(timeout); |
no outgoing calls