escape hatch to access the underlying data structure directly. prefer adding a method on PyDict instead of using this
(&self)
| 117 | /// escape hatch to access the underlying data structure directly. prefer adding a method on |
| 118 | /// PyDict instead of using this |
| 119 | pub(crate) const fn _as_dict_inner(&self) -> &DictContentType { |
| 120 | &self.entries |
| 121 | } |
| 122 | |
| 123 | /// Monotonically increasing version for mutation tracking. |
| 124 | pub(crate) fn version(&self) -> u64 { |
no outgoing calls
no test coverage detected