Set the authentication function for this client.
(&mut self, auth_function: RESTAuthFunction)
| 198 | |
| 199 | /// Set the authentication function for this client. |
| 200 | pub fn set_auth_function(&mut self, auth_function: RESTAuthFunction) { |
| 201 | self.auth_function = Some(auth_function); |
| 202 | } |
| 203 | |
| 204 | /// Build auth headers for a request. |
| 205 | async fn build_auth_headers( |