pub enum ImapCoroutineState<Y, R> {
Yielded(Y),
Complete(R),
}Expand description
Result of one ImapCoroutine::resume step.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<Y, R> Freeze for ImapCoroutineState<Y, R>
impl<Y, R> RefUnwindSafe for ImapCoroutineState<Y, R>where
Y: RefUnwindSafe,
R: RefUnwindSafe,
impl<Y, R> Send for ImapCoroutineState<Y, R>
impl<Y, R> Sync for ImapCoroutineState<Y, R>
impl<Y, R> Unpin for ImapCoroutineState<Y, R>
impl<Y, R> UnsafeUnpin for ImapCoroutineState<Y, R>where
Y: UnsafeUnpin,
R: UnsafeUnpin,
impl<Y, R> UnwindSafe for ImapCoroutineState<Y, R>where
Y: UnwindSafe,
R: 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