| 285 | #[repr(C)] |
| 286 | #[derive(Copy)] |
| 287 | pub struct PyMappingMethods { |
| 288 | pub mp_length: Option<lenfunc>, |
| 289 | pub mp_subscript: Option<binaryfunc>, |
| 290 | pub mp_ass_subscript: Option<objobjargproc>, |
| 291 | } |
| 292 | |
| 293 | impl Clone for PyMappingMethods { |
| 294 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected