pub enum IterANextOutput<T, U> {
Yield(T),
Return(U),
}
👎Deprecated since 0.21.0: Use
Option
or PyStopAsyncIteration
instead.Expand description
Output of __anext__
.
https://docs.python.org/3/reference/expressions.html#agen.__anext__
Variants§
Yield(T)
👎Deprecated since 0.21.0: Use
Option
or PyStopAsyncIteration
instead.An expression which the generator yielded.
Return(U)
👎Deprecated since 0.21.0: Use
Option
or PyStopAsyncIteration
instead.A StopAsyncIteration
object.
Auto Trait Implementations§
impl<T, U> Freeze for IterANextOutput<T, U>
impl<T, U> RefUnwindSafe for IterANextOutput<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for IterANextOutput<T, U>
impl<T, U> Sync for IterANextOutput<T, U>
impl<T, U> Unpin for IterANextOutput<T, U>
impl<T, U> UnwindSafe for IterANextOutput<T, U>where
T: UnwindSafe,
U: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more