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