(&'a self, _py: Python<'a>)
| 178 | /// Requires a `Python` instance as proof that the GIL is acquired. |
| 179 | #[inline] |
| 180 | pub fn get<'a>(&'a self, _py: Python<'a>) -> &'a T { |
| 181 | &self.data |
| 182 | } |
| 183 | |
| 184 | /// Consumes the `GILProtected`, returning the wrapped value. |
| 185 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected