(&self, py: Python, key: PyBackedStr)
| 117 | /// Returns true if the map contains a value for the specified key. |
| 118 | #[pyo3(signature = (key))] |
| 119 | fn contains_key(&self, py: Python, key: PyBackedStr) -> bool { |
| 120 | py.allow_threads(|| self.0.contains_key::<&str>(key.as_ref())) |
| 121 | } |
| 122 | |
| 123 | /// Returns key-value pairs in the order they were added. |
| 124 | fn items(&self) -> HeaderMapItemsIter { |
no outgoing calls