Trait cpython::PythonObjectWithTypeObject[][src]

pub trait PythonObjectWithTypeObject: PythonObjectWithCheckedDowncast {
    fn type_object(py: Python<'_>) -> PyType;
}
Expand description

Trait implemented by Python object types that have a corresponding type object.

Required methods

Retrieves the type object for this Python object type.

Implementors