Searched refs:StoreData (Results 1 – 5 of 5) sorted by relevance
| /wasmtime-44.0.1/crates/wasi-http/src/ |
| H A D | handler.rs | 152 type StoreData: Send; typedef 159 fn new_store(&self, req_id: Option<u64>) -> Result<StoreBundle<Self::StoreData>>; in new_store() argument 185 instance_pre: ProxyPre<S::StoreData>, 187 task_queue: Queue<TaskFn<S::StoreData>>, 260 async fn run(mut self, task: Option<TaskFn<S::StoreData>>, req_id: Option<u64>) { in run() argument 268 task: Option<TaskFn<S::StoreData>>, in run_() argument 323 let accept_task = |task: TaskFn<S::StoreData>, in run_() 552 pub fn new(state: S, instance_pre: ProxyPre<S::StoreData>) -> Self { in new() 574 pub fn spawn(&self, req_id: Option<u64>, task: TaskFn<S::StoreData>) { in spawn() argument 624 pub fn instance_pre(&self) -> &ProxyPre<S::StoreData> { in instance_pre() argument [all …]
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/store/ |
| H A D | data.rs | 17 pub struct StoreData { struct 23 impl StoreData { impl 24 pub fn new(engine: &Engine) -> StoreData { in new() argument 27 StoreData { in new() 56 StoreData: Index<I>, 58 type Output = <StoreData as Index<I>>::Output; 68 StoreData: IndexMut<I>,
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/component/ |
| H A D | store.rs | 12 use crate::store::{StoreData, StoreId, StoreOpaque}; 252 fn from_data_get_mut<'a>(&self, store: &'a mut StoreData) -> Pin<&'a mut ComponentInstance> { in from_data_get_mut() 258 impl StoreData { implementation
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | store.rs | 520 store_data: StoreData, 736 let store_data = StoreData::new(engine); in try_new() 856 StoreData::run_manual_drop_routines(StoreContextMut(&mut self.inner)); in run_manual_drop_routines() 1664 pub fn store_data(&self) -> &StoreData { in store_data() argument 1669 pub fn store_data_mut(&mut self) -> &mut StoreData { in store_data_mut() argument 1673 pub fn store_data_mut_and_registry(&mut self) -> (&mut StoreData, &ModuleRegistry) { in store_data_mut_and_registry() argument
|
| /wasmtime-44.0.1/src/commands/ |
| H A D | serve.rs | 768 type StoreData = Host; typedef
|