pub enum RunState {
Finished(Vec<Value>),
Resumable(ResumableRef),
}
Variants§
Finished(Vec<Value>)
Resumable(ResumableRef)
Auto Trait Implementations§
impl Freeze for RunState
impl !RefUnwindSafe for RunState
impl Send for RunState
impl Sync for RunState
impl Unpin for RunState
impl !UnwindSafe for RunState
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