Type Alias PyObject
pub type PyObject = Py<PyAny>;
Available on crate features
dep_pyo3
and std
only.Expand description
A commonly-used alias for Py<PyAny>
.
This is an owned reference a Python object without any type information. This value can also be safely sent between threads.
See the documentation for Py
.
Aliased Typeยง
struct PyObject(/* private fields */);