pub struct Trampoline<'a> { /* private fields */ }Expand description
A callable trampoline
Implementations§
Source§impl<'a> Trampoline<'a>
impl<'a> Trampoline<'a>
Sourcepub fn call(
&self,
compiled: &CompiledTestFile,
arguments: &[DataValue],
) -> Vec<DataValue>
pub fn call( &self, compiled: &CompiledTestFile, arguments: &[DataValue], ) -> Vec<DataValue>
Call the target function of this trampoline, passing in [DataValue]s using a compiled trampoline.