pub enum HoleValue {
Cont(u8, Label),
Const(u8, i64),
}Expand description
What to plug into a stencil’s holes, by hole id.
Variants§
Cont(u8, Label)
Continuation hole N jumps to this piece.
Const(u8, i64)
Constant hole N reads this value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HoleValue
impl RefUnwindSafe for HoleValue
impl Send for HoleValue
impl Sync for HoleValue
impl Unpin for HoleValue
impl UnsafeUnpin for HoleValue
impl UnwindSafe for HoleValue
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