(
method_def: *mut ffi::PyMethodDef,
)
| 112 | |
| 113 | #[inline] |
| 114 | pub unsafe fn create_instance_method_descriptor<T>( |
| 115 | method_def: *mut ffi::PyMethodDef, |
| 116 | ) -> InstanceMethodDescriptor<T> { |
| 117 | InstanceMethodDescriptor(method_def, marker::PhantomData) |
| 118 | } |
| 119 | |
| 120 | impl<T> TypeMember<T> for InstanceMethodDescriptor<T> |
| 121 | where |
nothing calls this directly
no test coverage detected