Set auth token to the given value.
(&mut self, token: String)
| 112 | |
| 113 | /// Set auth token to the given value. |
| 114 | pub fn set_token(&mut self, token: String) { |
| 115 | self.token = Some(token); |
| 116 | } |
| 117 | |
| 118 | /// Clear the auth token. |
| 119 | pub fn clear_token(&mut self) { |
no outgoing calls