(&'static self)
| 119 | } |
| 120 | |
| 121 | pub const fn to_function(&'static self) -> PyNativeFunction { |
| 122 | PyNativeFunction { |
| 123 | zelf: None, |
| 124 | value: self, |
| 125 | module: None, |
| 126 | _method_def_owner: None, |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | pub fn to_method( |
| 131 | &'static self, |
no outgoing calls
no test coverage detected