Removes the given key, if it exists.
(&mut self, key: Param)
| 358 | |
| 359 | /// Removes the given key, if it exists. |
| 360 | pub fn remove(&mut self, key: Param) -> &mut Self { |
| 361 | self.inner.remove(&key); |
| 362 | self |
| 363 | } |
| 364 | |
| 365 | /// Sets the given key from an optional value. |
| 366 | /// Removes the key if the value is `None`. |
no outgoing calls