Lines Matching refs:component
10 instance_pre: wasmtime::component::InstancePre<T>,
28 instance_pre: wasmtime::component::InstancePre<_T>, in new()
36 pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> { in instance_pre()
113 _instance_pre: &wasmtime::component::InstancePre<_T>, in new()
115 let _component = _instance_pre.component(); in new()
128 instance: &wasmtime::component::Instance, in load()
141 component: &wasmtime::component::Component, in instantiate()
142 linker: &wasmtime::component::Linker<_T>, in instantiate()
144 let pre = linker.instantiate_pre(component)?; in instantiate()
151 instance: &wasmtime::component::Instance, in new()
160 component: &wasmtime::component::Component, in instantiate_async()
161 linker: &wasmtime::component::Linker<_T>, in instantiate_async()
166 let pre = linker.instantiate_pre(component)?; in instantiate_async()
170 linker: &mut wasmtime::component::Linker<T>, in add_to_linker()
191 use wasmtime::component::__internal::Box;
192 #[derive(wasmtime::component::ComponentType)]
193 #[derive(wasmtime::component::Lift)]
194 #[derive(wasmtime::component::Lower)]
195 #[component(record)]
198 #[component(name = "a1")]
200 #[component(name = "a2")]
202 #[component(name = "a3")]
204 #[component(name = "a4")]
206 #[component(name = "b")]
207 pub b: wasmtime::component::__internal::String,
208 #[component(name = "c")]
209 pub c: wasmtime::component::__internal::Vec<u8>,
225 48 == < OtherRecord as wasmtime::component::ComponentType >::SIZE32
228 8 == < OtherRecord as wasmtime::component::ComponentType >::ALIGN32
231 #[derive(wasmtime::component::ComponentType)]
232 #[derive(wasmtime::component::Lift)]
233 #[derive(wasmtime::component::Lower)]
234 #[component(record)]
237 #[component(name = "x")]
238 pub x: wasmtime::component::__internal::String,
239 #[component(name = "y")]
241 #[component(name = "z")]
242 pub z: wasmtime::component::__internal::Vec<OtherRecord>,
243 #[component(name = "c1")]
245 #[component(name = "c2")]
247 #[component(name = "c3")]
249 #[component(name = "c4")]
267 96 == < SomeRecord as wasmtime::component::ComponentType >::SIZE32
270 8 == < SomeRecord as wasmtime::component::ComponentType >::ALIGN32
273 #[derive(wasmtime::component::ComponentType)]
274 #[derive(wasmtime::component::Lift)]
275 #[derive(wasmtime::component::Lower)]
276 #[component(variant)]
279 #[component(name = "a")]
281 #[component(name = "b")]
283 #[component(name = "c")]
284 C(wasmtime::component::__internal::String),
301 12 == < OtherVariant as wasmtime::component::ComponentType >::SIZE32
304 4 == < OtherVariant as wasmtime::component::ComponentType >::ALIGN32
307 #[derive(wasmtime::component::ComponentType)]
308 #[derive(wasmtime::component::Lift)]
309 #[derive(wasmtime::component::Lower)]
310 #[component(variant)]
313 #[component(name = "a")]
314 A(wasmtime::component::__internal::String),
315 #[component(name = "b")]
317 #[component(name = "c")]
319 #[component(name = "d")]
320 D(wasmtime::component::__internal::Vec<OtherVariant>),
340 12 == < SomeVariant as wasmtime::component::ComponentType >::SIZE32
343 4 == < SomeVariant as wasmtime::component::ComponentType >::ALIGN32
346 pub type LoadStoreAllSizes = wasmtime::component::__internal::Vec<
348 wasmtime::component::__internal::String,
364 8 == < LoadStoreAllSizes as wasmtime::component::ComponentType
368 4 == < LoadStoreAllSizes as wasmtime::component::ComponentType
372 pub trait HostWithStore: wasmtime::component::HasData + Send {}
375 _T: wasmtime::component::HasData + Send,
380 x: wasmtime::component::__internal::Vec<u8>, in list_u8_param()
384 x: wasmtime::component::__internal::Vec<u16>, in list_u16_param()
388 x: wasmtime::component::__internal::Vec<u32>, in list_u32_param()
392 x: wasmtime::component::__internal::Vec<u64>, in list_u64_param()
396 x: wasmtime::component::__internal::Vec<i8>, in list_s8_param()
400 x: wasmtime::component::__internal::Vec<i16>, in list_s16_param()
404 x: wasmtime::component::__internal::Vec<i32>, in list_s32_param()
408 x: wasmtime::component::__internal::Vec<i64>, in list_s64_param()
412 x: wasmtime::component::__internal::Vec<f32>, in list_f32_param()
416 x: wasmtime::component::__internal::Vec<f64>, in list_f64_param()
421 Output = wasmtime::component::__internal::Vec<u8>, in list_u8_ret()
426 Output = wasmtime::component::__internal::Vec<u16>, in list_u16_ret()
431 Output = wasmtime::component::__internal::Vec<u32>, in list_u32_ret()
436 Output = wasmtime::component::__internal::Vec<u64>, in list_u64_ret()
441 Output = wasmtime::component::__internal::Vec<i8>, in list_s8_ret()
446 Output = wasmtime::component::__internal::Vec<i16>, in list_s16_ret()
451 Output = wasmtime::component::__internal::Vec<i32>, in list_s32_ret()
456 Output = wasmtime::component::__internal::Vec<i64>, in list_s64_ret()
461 Output = wasmtime::component::__internal::Vec<f32>, in list_f32_ret()
466 Output = wasmtime::component::__internal::Vec<f64>, in list_f64_ret()
470 x: wasmtime::component::__internal::Vec<(u8, i8)>, in tuple_list()
472 Output = wasmtime::component::__internal::Vec<(i64, u32)>, in tuple_list()
476 a: wasmtime::component::__internal::Vec< in string_list_arg()
477 wasmtime::component::__internal::String, in string_list_arg()
483 Output = wasmtime::component::__internal::Vec< in string_list_ret()
484 wasmtime::component::__internal::String, in string_list_ret()
489 x: wasmtime::component::__internal::Vec< in tuple_string_list()
490 (u8, wasmtime::component::__internal::String), in tuple_string_list()
493 Output = wasmtime::component::__internal::Vec< in tuple_string_list()
494 (wasmtime::component::__internal::String, u8), in tuple_string_list()
499 x: wasmtime::component::__internal::Vec< in string_list()
500 wasmtime::component::__internal::String, in string_list()
503 Output = wasmtime::component::__internal::Vec< in string_list()
504 wasmtime::component::__internal::String, in string_list()
509 x: wasmtime::component::__internal::Vec<SomeRecord>, in record_list()
511 Output = wasmtime::component::__internal::Vec<OtherRecord>, in record_list()
515 x: wasmtime::component::__internal::Vec<OtherRecord>, in record_list_reverse()
517 Output = wasmtime::component::__internal::Vec<SomeRecord>, in record_list_reverse()
521 x: wasmtime::component::__internal::Vec<SomeVariant>, in variant_list()
523 Output = wasmtime::component::__internal::Vec<OtherVariant>, in variant_list()
533 x: wasmtime::component::__internal::Vec<u8>, in list_u8_param()
539 x: wasmtime::component::__internal::Vec<u16>, in list_u16_param()
545 x: wasmtime::component::__internal::Vec<u32>, in list_u32_param()
551 x: wasmtime::component::__internal::Vec<u64>, in list_u64_param()
557 x: wasmtime::component::__internal::Vec<i8>, in list_s8_param()
563 x: wasmtime::component::__internal::Vec<i16>, in list_s16_param()
569 x: wasmtime::component::__internal::Vec<i32>, in list_s32_param()
575 x: wasmtime::component::__internal::Vec<i64>, in list_s64_param()
581 x: wasmtime::component::__internal::Vec<f32>, in list_f32_param()
587 x: wasmtime::component::__internal::Vec<f64>, in list_f64_param()
594 Output = wasmtime::component::__internal::Vec<u8>, in list_u8_ret()
601 Output = wasmtime::component::__internal::Vec<u16>, in list_u16_ret()
608 Output = wasmtime::component::__internal::Vec<u32>, in list_u32_ret()
615 Output = wasmtime::component::__internal::Vec<u64>, in list_u64_ret()
622 Output = wasmtime::component::__internal::Vec<i8>, in list_s8_ret()
629 Output = wasmtime::component::__internal::Vec<i16>, in list_s16_ret()
636 Output = wasmtime::component::__internal::Vec<i32>, in list_s32_ret()
643 Output = wasmtime::component::__internal::Vec<i64>, in list_s64_ret()
650 Output = wasmtime::component::__internal::Vec<f32>, in list_f32_ret()
657 Output = wasmtime::component::__internal::Vec<f64>, in list_f64_ret()
663 x: wasmtime::component::__internal::Vec<(u8, i8)>, in tuple_list()
665 Output = wasmtime::component::__internal::Vec<(i64, u32)>, in tuple_list()
671 a: wasmtime::component::__internal::Vec< in string_list_arg()
672 wasmtime::component::__internal::String, in string_list_arg()
680 Output = wasmtime::component::__internal::Vec< in string_list_ret()
681 wasmtime::component::__internal::String, in string_list_ret()
688 x: wasmtime::component::__internal::Vec< in tuple_string_list()
689 (u8, wasmtime::component::__internal::String), in tuple_string_list()
692 Output = wasmtime::component::__internal::Vec< in tuple_string_list()
693 (wasmtime::component::__internal::String, u8), in tuple_string_list()
700 x: wasmtime::component::__internal::Vec< in string_list()
701 wasmtime::component::__internal::String, in string_list()
704 Output = wasmtime::component::__internal::Vec< in string_list()
705 wasmtime::component::__internal::String, in string_list()
712 x: wasmtime::component::__internal::Vec<SomeRecord>, in record_list()
714 Output = wasmtime::component::__internal::Vec<OtherRecord>, in record_list()
720 x: wasmtime::component::__internal::Vec<OtherRecord>, in record_list_reverse()
722 Output = wasmtime::component::__internal::Vec<SomeRecord>, in record_list_reverse()
728 x: wasmtime::component::__internal::Vec<SomeVariant>, in variant_list()
730 Output = wasmtime::component::__internal::Vec<OtherVariant>, in variant_list()
742 linker: &mut wasmtime::component::Linker<T>, in add_to_linker()
755 (arg0,): (wasmtime::component::__internal::Vec<u8>,)| in add_to_linker()
757 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
768 (arg0,): (wasmtime::component::__internal::Vec<u16>,)| in add_to_linker()
770 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
781 (arg0,): (wasmtime::component::__internal::Vec<u32>,)| in add_to_linker()
783 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
794 (arg0,): (wasmtime::component::__internal::Vec<u64>,)| in add_to_linker()
796 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
807 (arg0,): (wasmtime::component::__internal::Vec<i8>,)| in add_to_linker()
809 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
820 (arg0,): (wasmtime::component::__internal::Vec<i16>,)| in add_to_linker()
822 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
833 (arg0,): (wasmtime::component::__internal::Vec<i32>,)| in add_to_linker()
835 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
846 (arg0,): (wasmtime::component::__internal::Vec<i64>,)| in add_to_linker()
848 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
859 (arg0,): (wasmtime::component::__internal::Vec<f32>,)| in add_to_linker()
861 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
872 (arg0,): (wasmtime::component::__internal::Vec<f64>,)| in add_to_linker()
874 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
884 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
894 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
904 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
914 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
924 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
934 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
944 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
954 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
964 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
974 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
985 (arg0,): (wasmtime::component::__internal::Vec<(u8, i8)>,)| in add_to_linker()
987 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1001 wasmtime::component::__internal::Vec< in add_to_linker()
1002 wasmtime::component::__internal::String, in add_to_linker()
1006 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1016 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1030 wasmtime::component::__internal::Vec< in add_to_linker()
1031 (u8, wasmtime::component::__internal::String), in add_to_linker()
1035 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1049 wasmtime::component::__internal::Vec< in add_to_linker()
1050 wasmtime::component::__internal::String, in add_to_linker()
1054 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1065 (arg0,): (wasmtime::component::__internal::Vec<SomeRecord>,)| in add_to_linker()
1067 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1078 (arg0,): (wasmtime::component::__internal::Vec<OtherRecord>,)| in add_to_linker()
1080 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1091 (arg0,): (wasmtime::component::__internal::Vec<SomeVariant>,)| in add_to_linker()
1093 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1106 wasmtime::component::__internal::Box::new(async move { in add_to_linker()
1124 use wasmtime::component::__internal::Box;
1125 #[derive(wasmtime::component::ComponentType)]
1126 #[derive(wasmtime::component::Lift)]
1127 #[derive(wasmtime::component::Lower)]
1128 #[component(record)]
1131 #[component(name = "a1")]
1133 #[component(name = "a2")]
1135 #[component(name = "a3")]
1137 #[component(name = "a4")]
1139 #[component(name = "b")]
1140 pub b: wasmtime::component::__internal::String,
1141 #[component(name = "c")]
1142 pub c: wasmtime::component::__internal::Vec<u8>,
1161 48 == < OtherRecord as wasmtime::component::ComponentType
1165 8 == < OtherRecord as wasmtime::component::ComponentType
1169 #[derive(wasmtime::component::ComponentType)]
1170 #[derive(wasmtime::component::Lift)]
1171 #[derive(wasmtime::component::Lower)]
1172 #[component(record)]
1175 #[component(name = "x")]
1176 pub x: wasmtime::component::__internal::String,
1177 #[component(name = "y")]
1179 #[component(name = "z")]
1180 pub z: wasmtime::component::__internal::Vec<OtherRecord>,
1181 #[component(name = "c1")]
1183 #[component(name = "c2")]
1185 #[component(name = "c3")]
1187 #[component(name = "c4")]
1208 96 == < SomeRecord as wasmtime::component::ComponentType
1212 8 == < SomeRecord as wasmtime::component::ComponentType
1216 #[derive(wasmtime::component::ComponentType)]
1217 #[derive(wasmtime::component::Lift)]
1218 #[derive(wasmtime::component::Lower)]
1219 #[component(variant)]
1222 #[component(name = "a")]
1224 #[component(name = "b")]
1226 #[component(name = "c")]
1227 C(wasmtime::component::__internal::String),
1247 12 == < OtherVariant as wasmtime::component::ComponentType
1251 4 == < OtherVariant as wasmtime::component::ComponentType
1255 #[derive(wasmtime::component::ComponentType)]
1256 #[derive(wasmtime::component::Lift)]
1257 #[derive(wasmtime::component::Lower)]
1258 #[component(variant)]
1261 #[component(name = "a")]
1262 A(wasmtime::component::__internal::String),
1263 #[component(name = "b")]
1265 #[component(name = "c")]
1267 #[component(name = "d")]
1268 D(wasmtime::component::__internal::Vec<OtherVariant>),
1291 12 == < SomeVariant as wasmtime::component::ComponentType
1295 4 == < SomeVariant as wasmtime::component::ComponentType
1299 pub type LoadStoreAllSizes = wasmtime::component::__internal::Vec<
1301 wasmtime::component::__internal::String,
1317 8 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1321 4 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1327 list_u8_param: wasmtime::component::Func,
1328 list_u16_param: wasmtime::component::Func,
1329 list_u32_param: wasmtime::component::Func,
1330 list_u64_param: wasmtime::component::Func,
1331 list_s8_param: wasmtime::component::Func,
1332 list_s16_param: wasmtime::component::Func,
1333 list_s32_param: wasmtime::component::Func,
1334 list_s64_param: wasmtime::component::Func,
1335 list_f32_param: wasmtime::component::Func,
1336 list_f64_param: wasmtime::component::Func,
1337 list_u8_ret: wasmtime::component::Func,
1338 list_u16_ret: wasmtime::component::Func,
1339 list_u32_ret: wasmtime::component::Func,
1340 list_u64_ret: wasmtime::component::Func,
1341 list_s8_ret: wasmtime::component::Func,
1342 list_s16_ret: wasmtime::component::Func,
1343 list_s32_ret: wasmtime::component::Func,
1344 list_s64_ret: wasmtime::component::Func,
1345 list_f32_ret: wasmtime::component::Func,
1346 list_f64_ret: wasmtime::component::Func,
1347 tuple_list: wasmtime::component::Func,
1348 string_list_arg: wasmtime::component::Func,
1349 string_list_ret: wasmtime::component::Func,
1350 tuple_string_list: wasmtime::component::Func,
1351 string_list: wasmtime::component::Func,
1352 record_list: wasmtime::component::Func,
1353 record_list_reverse: wasmtime::component::Func,
1354 variant_list: wasmtime::component::Func,
1355 load_store_everything: wasmtime::component::Func,
1359 list_u8_param: wasmtime::component::ComponentExportIndex,
1360 list_u16_param: wasmtime::component::ComponentExportIndex,
1361 list_u32_param: wasmtime::component::ComponentExportIndex,
1362 list_u64_param: wasmtime::component::ComponentExportIndex,
1363 list_s8_param: wasmtime::component::ComponentExportIndex,
1364 list_s16_param: wasmtime::component::ComponentExportIndex,
1365 list_s32_param: wasmtime::component::ComponentExportIndex,
1366 list_s64_param: wasmtime::component::ComponentExportIndex,
1367 list_f32_param: wasmtime::component::ComponentExportIndex,
1368 list_f64_param: wasmtime::component::ComponentExportIndex,
1369 list_u8_ret: wasmtime::component::ComponentExportIndex,
1370 list_u16_ret: wasmtime::component::ComponentExportIndex,
1371 list_u32_ret: wasmtime::component::ComponentExportIndex,
1372 list_u64_ret: wasmtime::component::ComponentExportIndex,
1373 list_s8_ret: wasmtime::component::ComponentExportIndex,
1374 list_s16_ret: wasmtime::component::ComponentExportIndex,
1375 list_s32_ret: wasmtime::component::ComponentExportIndex,
1376 list_s64_ret: wasmtime::component::ComponentExportIndex,
1377 list_f32_ret: wasmtime::component::ComponentExportIndex,
1378 list_f64_ret: wasmtime::component::ComponentExportIndex,
1379 tuple_list: wasmtime::component::ComponentExportIndex,
1380 string_list_arg: wasmtime::component::ComponentExportIndex,
1381 string_list_ret: wasmtime::component::ComponentExportIndex,
1382 tuple_string_list: wasmtime::component::ComponentExportIndex,
1383 string_list: wasmtime::component::ComponentExportIndex,
1384 record_list: wasmtime::component::ComponentExportIndex,
1385 record_list_reverse: wasmtime::component::ComponentExportIndex,
1386 variant_list: wasmtime::component::ComponentExportIndex,
1387 load_store_everything: wasmtime::component::ComponentExportIndex,
1397 _instance_pre: &wasmtime::component::InstancePre<_T>, in new()
1400 .component() in new()
1409 .component() in new()
1483 instance: &wasmtime::component::Instance, in load()
1553 (wasmtime::component::__internal::Vec<u8>,), in load()
1559 (wasmtime::component::__internal::Vec<u16>,), in load()
1565 (wasmtime::component::__internal::Vec<u32>,), in load()
1571 (wasmtime::component::__internal::Vec<u64>,), in load()
1577 (wasmtime::component::__internal::Vec<i8>,), in load()
1583 (wasmtime::component::__internal::Vec<i16>,), in load()
1589 (wasmtime::component::__internal::Vec<i32>,), in load()
1595 (wasmtime::component::__internal::Vec<i64>,), in load()
1601 (wasmtime::component::__internal::Vec<f32>,), in load()
1607 (wasmtime::component::__internal::Vec<f64>,), in load()
1613 (wasmtime::component::__internal::Vec<(i64, u32)>,), in load()
1618 (&[wasmtime::component::__internal::String],), in load()
1626 wasmtime::component::__internal::Vec< in load()
1627 wasmtime::component::__internal::String, in load()
1634 (&[(u8, wasmtime::component::__internal::String)],), in load()
1636 wasmtime::component::__internal::Vec< in load()
1637 (wasmtime::component::__internal::String, u8), in load()
1644 (&[wasmtime::component::__internal::String],), in load()
1646 wasmtime::component::__internal::Vec< in load()
1647 wasmtime::component::__internal::String, in load()
1655 (wasmtime::component::__internal::Vec<OtherRecord>,), in load()
1661 (wasmtime::component::__internal::Vec<SomeRecord>,), in load()
1667 (wasmtime::component::__internal::Vec<OtherVariant>,), in load()
1719 wasmtime::component::TypedFunc::< in call_list_u8_param()
1738 wasmtime::component::TypedFunc::< in call_list_u16_param()
1757 wasmtime::component::TypedFunc::< in call_list_u32_param()
1776 wasmtime::component::TypedFunc::< in call_list_u64_param()
1795 wasmtime::component::TypedFunc::< in call_list_s8_param()
1814 wasmtime::component::TypedFunc::< in call_list_s16_param()
1833 wasmtime::component::TypedFunc::< in call_list_s32_param()
1852 wasmtime::component::TypedFunc::< in call_list_s64_param()
1871 wasmtime::component::TypedFunc::< in call_list_f32_param()
1890 wasmtime::component::TypedFunc::< in call_list_f64_param()
1903 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u8>> in call_list_u8_ret()
1908 wasmtime::component::TypedFunc::< in call_list_u8_ret()
1910 (wasmtime::component::__internal::Vec<u8>,), in call_list_u8_ret()
1921 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u16>> in call_list_u16_ret()
1926 wasmtime::component::TypedFunc::< in call_list_u16_ret()
1928 (wasmtime::component::__internal::Vec<u16>,), in call_list_u16_ret()
1939 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u32>> in call_list_u32_ret()
1944 wasmtime::component::TypedFunc::< in call_list_u32_ret()
1946 (wasmtime::component::__internal::Vec<u32>,), in call_list_u32_ret()
1957 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u64>> in call_list_u64_ret()
1962 wasmtime::component::TypedFunc::< in call_list_u64_ret()
1964 (wasmtime::component::__internal::Vec<u64>,), in call_list_u64_ret()
1975 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i8>> in call_list_s8_ret()
1980 wasmtime::component::TypedFunc::< in call_list_s8_ret()
1982 (wasmtime::component::__internal::Vec<i8>,), in call_list_s8_ret()
1993 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i16>> in call_list_s16_ret()
1998 wasmtime::component::TypedFunc::< in call_list_s16_ret()
2000 (wasmtime::component::__internal::Vec<i16>,), in call_list_s16_ret()
2011 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i32>> in call_list_s32_ret()
2016 wasmtime::component::TypedFunc::< in call_list_s32_ret()
2018 (wasmtime::component::__internal::Vec<i32>,), in call_list_s32_ret()
2029 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i64>> in call_list_s64_ret()
2034 wasmtime::component::TypedFunc::< in call_list_s64_ret()
2036 (wasmtime::component::__internal::Vec<i64>,), in call_list_s64_ret()
2047 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f32>> in call_list_f32_ret()
2052 wasmtime::component::TypedFunc::< in call_list_f32_ret()
2054 (wasmtime::component::__internal::Vec<f32>,), in call_list_f32_ret()
2065 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f64>> in call_list_f64_ret()
2070 wasmtime::component::TypedFunc::< in call_list_f64_ret()
2072 (wasmtime::component::__internal::Vec<f64>,), in call_list_f64_ret()
2085 wasmtime::component::__internal::Vec<(i64, u32)>, in call_tuple_list()
2091 wasmtime::component::TypedFunc::< in call_tuple_list()
2093 (wasmtime::component::__internal::Vec<(i64, u32)>,), in call_tuple_list()
2104 arg0: &[wasmtime::component::__internal::String], in call_string_list_arg()
2110 wasmtime::component::TypedFunc::< in call_string_list_arg()
2111 (&[wasmtime::component::__internal::String],), in call_string_list_arg()
2124 wasmtime::component::__internal::Vec< in call_string_list_ret()
2125 wasmtime::component::__internal::String, in call_string_list_ret()
2132 wasmtime::component::TypedFunc::< in call_string_list_ret()
2135 wasmtime::component::__internal::Vec< in call_string_list_ret()
2136 wasmtime::component::__internal::String, in call_string_list_ret()
2149 arg0: &[(u8, wasmtime::component::__internal::String)], in call_tuple_string_list()
2151 wasmtime::component::__internal::Vec< in call_tuple_string_list()
2152 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
2159 wasmtime::component::TypedFunc::< in call_tuple_string_list()
2160 (&[(u8, wasmtime::component::__internal::String)],), in call_tuple_string_list()
2162 wasmtime::component::__internal::Vec< in call_tuple_string_list()
2163 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
2176 arg0: &[wasmtime::component::__internal::String], in call_string_list()
2178 wasmtime::component::__internal::Vec< in call_string_list()
2179 wasmtime::component::__internal::String, in call_string_list()
2186 wasmtime::component::TypedFunc::< in call_string_list()
2187 (&[wasmtime::component::__internal::String],), in call_string_list()
2189 wasmtime::component::__internal::Vec< in call_string_list()
2190 wasmtime::component::__internal::String, in call_string_list()
2205 wasmtime::component::__internal::Vec<OtherRecord>, in call_record_list()
2211 wasmtime::component::TypedFunc::< in call_record_list()
2213 (wasmtime::component::__internal::Vec<OtherRecord>,), in call_record_list()
2226 wasmtime::component::__internal::Vec<SomeRecord>, in call_record_list_reverse()
2232 wasmtime::component::TypedFunc::< in call_record_list_reverse()
2234 (wasmtime::component::__internal::Vec<SomeRecord>,), in call_record_list_reverse()
2247 wasmtime::component::__internal::Vec<OtherVariant>, in call_variant_list()
2253 wasmtime::component::TypedFunc::< in call_variant_list()
2255 (wasmtime::component::__internal::Vec<OtherVariant>,), in call_variant_list()
2272 wasmtime::component::TypedFunc::< in call_load_store_everything()