Lines Matching refs:instance_pre
10 instance_pre: wasmtime::component::InstancePre<T>, field
16 instance_pre: self.instance_pre.clone(), in clone()
28 instance_pre: wasmtime::component::InstancePre<_T>, in new()
30 let indices = EmptyIndices::new(&instance_pre)?; in new()
31 Ok(Self { instance_pre, indices }) in new()
34 self.instance_pre.engine() in engine()
36 pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> { in instance_pre() method
37 &self.instance_pre in instance_pre()
51 let instance = self.instance_pre.instantiate(&mut store)?; in instantiate()
62 let instance = self.instance_pre.instantiate_async(&mut store).await?; in instantiate_async()
147 let indices = EmptyIndices::new(&instance.instance_pre(&store))?; in new()