Trait cpython::PythonObjectWithTypeObject [] [src]

pub trait PythonObjectWithTypeObject: PythonObjectWithCheckedDowncast {
    fn type_object(_: Python) -> PyType;
}

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

Required Methods

Retrieves the type object for this Python object type.

Implementors