pub struct CompiledFunctionBody {
pub code: Box<dyn Any + Send>,
pub needs_gc_heap: bool,
}
Expand description
The result of compiling a single function body.
Fields§
§code: Box<dyn Any + Send>
The code. This is whatever type the Compiler
implementation wants it
to be, we just shepherd it around.
needs_gc_heap: bool
Whether the compiled function needs a GC heap to run; that is, whether it reads a struct field, allocates, an array, or etc…
Auto Trait Implementations§
impl Freeze for CompiledFunctionBody
impl !RefUnwindSafe for CompiledFunctionBody
impl Send for CompiledFunctionBody
impl !Sync for CompiledFunctionBody
impl Unpin for CompiledFunctionBody
impl !UnwindSafe for CompiledFunctionBody
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