pub struct CompiledFunction {
pub instructions: Vec<u8>,
pub num_locals: usize,
pub num_parameters: usize,
}
Fields§
§instructions: Vec<u8>
§num_locals: usize
§num_parameters: usize
Trait Implementations§
Source§impl Clone for CompiledFunction
impl Clone for CompiledFunction
Source§fn clone(&self) -> CompiledFunction
fn clone(&self) -> CompiledFunction
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompiledFunction
impl Debug for CompiledFunction
Source§impl PartialEq for CompiledFunction
impl PartialEq for CompiledFunction
impl Eq for CompiledFunction
impl StructuralPartialEq for CompiledFunction
Auto Trait Implementations§
impl Freeze for CompiledFunction
impl RefUnwindSafe for CompiledFunction
impl Send for CompiledFunction
impl Sync for CompiledFunction
impl Unpin for CompiledFunction
impl UnwindSafe for CompiledFunction
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