pub type PyIterNextOutput = IterNextOutput<PyObject, PyObject>;
๐Deprecated since 0.21.0: Use
Option
or PyStopIteration
instead.Expand description
Alias of IterNextOutput
with PyObject
yield & return values.
Aliased Typeยง
enum PyIterNextOutput {
Yield(Py<PyAny>),
Return(Py<PyAny>),
}