PyObject

Type Alias PyObject 

Source
pub type PyObject = Py<PyAny>;
๐Ÿ‘ŽDeprecated since 0.26.0: use Py<PyAny> instead
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ยง

pub struct PyObject(/* private fields */);