pub struct CompileResult {
pub chunk: Chunk,
pub functions: Vec<Function>,
}Expand description
Result of compiling a top-level expression.
Fields§
§chunk: ChunkThe top-level chunk to execute.
functions: Vec<Function>All compiled function templates (referenced by MakeClosure func_id).
Auto Trait Implementations§
impl Freeze for CompileResult
impl RefUnwindSafe for CompileResult
impl Send for CompileResult
impl Sync for CompileResult
impl Unpin for CompileResult
impl UnsafeUnpin for CompileResult
impl UnwindSafe for CompileResult
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