(&mut self)
| 609 | |
| 610 | impl Drop for PyBuffer { |
| 611 | fn drop(&mut self) { |
| 612 | let _gil_guard = Python::acquire_gil(); |
| 613 | unsafe { ffi::PyBuffer_Release(&mut *self.0) } |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | /// Like `std::mem::cell`, but only provides read-only access to the data. |
nothing calls this directly
no outgoing calls
no test coverage detected