pub enum Call {
Chunk {
module: Gc<Module>,
chunk_id: FunctionID,
fixed_nargs: usize,
},
Native {
func: Gc<NativeFunction>,
nargs: usize,
},
}
Expand description
Call directive
Variants
Chunk
Native
Auto Trait Implementations
impl !RefUnwindSafe for Call
impl !Send for Call
impl !Sync for Call
impl Unpin for Call
impl !UnwindSafe for Call
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more