pub struct EmitSession<'a> {
pub pipeline: &'a mut CodegenPipeline,
pub vmctx: Value,
pub gc_sig: SigRef,
pub oom_func: FuncRef,
pub tree: &'a CoreExpr,
}Expand description
Per-function compilation context bundling common parameters.
Fields§
§pipeline: &'a mut CodegenPipeline§vmctx: Value§gc_sig: SigRef§oom_func: FuncRef§tree: &'a CoreExprAuto Trait Implementations§
impl<'a> Freeze for EmitSession<'a>
impl<'a> !RefUnwindSafe for EmitSession<'a>
impl<'a> Send for EmitSession<'a>
impl<'a> !Sync for EmitSession<'a>
impl<'a> Unpin for EmitSession<'a>
impl<'a> UnsafeUnpin for EmitSession<'a>
impl<'a> !UnwindSafe for EmitSession<'a>
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