| 306 | #[repr(C)] |
| 307 | #[derive(Copy)] |
| 308 | pub struct PyBufferProcs { |
| 309 | pub bf_getreadbuffer: Option<readbufferproc>, |
| 310 | pub bf_getwritebuffer: Option<writebufferproc>, |
| 311 | pub bf_getsegcount: Option<segcountproc>, |
| 312 | pub bf_getcharbuffer: Option<charbufferproc>, |
| 313 | pub bf_getbuffer: Option<getbufferproc>, |
| 314 | pub bf_releasebuffer: Option<releasebufferproc>, |
| 315 | } |
| 316 | |
| 317 | impl Clone for PyBufferProcs { |
| 318 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected