(&self, key: &str, cred: StoredCredential)
| 221 | } |
| 222 | |
| 223 | fn insert(&self, key: &str, cred: StoredCredential) { |
| 224 | self.creds.lock().unwrap().insert(key.to_owned(), cred); |
| 225 | } |
| 226 | |
| 227 | fn remove(&self, key: &str) { |
| 228 | self.creds.lock().unwrap().remove(key); |
no outgoing calls