Enum pyo3::class::iter::IterNextOutput [−][src]
pub enum IterNextOutput<T, U> {
Yield(T),
Return(U),
}Output of __next__ which can either yield the next value in the iteration, or
return a value to raise StopIteration in Python.
See PyIterProtocol for an example.
Variants
Auto Trait Implementations
impl<T, U> RefUnwindSafe for IterNextOutput<T, U> where
T: RefUnwindSafe,
U: RefUnwindSafe,
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for IterNextOutput<T, U> where
T: Send,
U: Send,
T: Send,
U: Send,
impl<T, U> Sync for IterNextOutput<T, U> where
T: Sync,
U: Sync,
T: Sync,
U: Sync,
impl<T, U> Unpin for IterNextOutput<T, U> where
T: Unpin,
U: Unpin,
T: Unpin,
U: Unpin,
impl<T, U> UnwindSafe for IterNextOutput<T, U> where
T: UnwindSafe,
U: UnwindSafe,
T: UnwindSafe,
U: UnwindSafe,