pub trait PyClassInit<'py, const IS_PYCLASS: bool, const IS_INITIALIZER_TUPLE: bool> {
// Required method
fn init(self, cls: Borrowed<'_, 'py, PyType>) -> PyResult<Bound<'py, PyAny>>;
}pub trait PyClassInit<'py, const IS_PYCLASS: bool, const IS_INITIALIZER_TUPLE: bool> {
// Required method
fn init(self, cls: Borrowed<'_, 'py, PyType>) -> PyResult<Bound<'py, PyAny>>;
}