pub type PyIterANextOutput = IterANextOutput<PyObject, PyObject>;๐Deprecated since 0.21.0: Use
Option or PyStopAsyncIteration instead.Expand description
An IterANextOutput of Python objects.
Aliased Typeยง
enum PyIterANextOutput {
Yield(Py<PyAny>),
Return(Py<PyAny>),
}