pub enum Reify {
IfTrue {
c: RcExp,
env: Env,
f: RcExp,
},
IfFalse {
c: RcExp,
t: RcExp,
},
RunStaged {
b: RcExp,
},
RunNowInner {
env: Env,
},
LiftRefDone {
s1: RcExp,
},
CatchDone,
Produce,
}Expand description
What surrounding staged form a completed reify scope slots into.
Variants§
Auto Trait Implementations§
impl Freeze for Reify
impl !RefUnwindSafe for Reify
impl Send for Reify
impl Sync for Reify
impl Unpin for Reify
impl !UnwindSafe for Reify
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