1 2 3 4 5 6 7 8 9 10 11
use pyo3::prelude::*; #[pyclass] struct MyClass {} #[pymethods] impl MyClass { fn method_with_invalid_self_type(slf: i32, py: Python, index: u32) {} } fn main() {}