| 302 | #[repr(C)] |
| 303 | #[derive(Copy)] |
| 304 | pub struct PyMappingMethods { |
| 305 | pub mp_length: Option<crate::object::lenfunc>, |
| 306 | pub mp_subscript: Option<crate::object::binaryfunc>, |
| 307 | pub mp_ass_subscript: Option<crate::object::objobjargproc>, |
| 308 | } |
| 309 | impl Clone for PyMappingMethods { |
| 310 | #[inline] |
| 311 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected