| 360 | #[repr(C)] |
| 361 | #[derive(Copy)] |
| 362 | pub struct PyBufferProcs { |
| 363 | pub bf_getbuffer: Option<crate::object::getbufferproc>, |
| 364 | pub bf_releasebuffer: Option<crate::object::releasebufferproc>, |
| 365 | } |
| 366 | impl Clone for PyBufferProcs { |
| 367 | #[inline] |
| 368 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected