pub trait PyClass: PyTypeInfo<AsRefTarget = PyCell<Self>> + PyClassImpl {
type Frozen: Frozen;
}
Expand description
Types that can be used as Python classes.
The #[pyclass]
attribute implements this trait for your Rust struct -
you shouldn’t implement this trait directly.