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()
762 wasmtime::component::__internal::Box::new( in add_to_linker()
784 (arg0,): (wasmtime::component::__internal::Vec<u16>,)| in add_to_linker()
791 wasmtime::component::__internal::Box::new( in add_to_linker()
813 (arg0,): (wasmtime::component::__internal::Vec<u32>,)| in add_to_linker()
820 wasmtime::component::__internal::Box::new( in add_to_linker()
842 (arg0,): (wasmtime::component::__internal::Vec<u64>,)| in add_to_linker()
849 wasmtime::component::__internal::Box::new( in add_to_linker()
871 (arg0,): (wasmtime::component::__internal::Vec<i8>,)| in add_to_linker()
878 wasmtime::component::__internal::Box::new( in add_to_linker()
900 (arg0,): (wasmtime::component::__internal::Vec<i16>,)| in add_to_linker()
907 wasmtime::component::__internal::Box::new( in add_to_linker()
929 (arg0,): (wasmtime::component::__internal::Vec<i32>,)| in add_to_linker()
936 wasmtime::component::__internal::Box::new( in add_to_linker()
958 (arg0,): (wasmtime::component::__internal::Vec<i64>,)| in add_to_linker()
965 wasmtime::component::__internal::Box::new( in add_to_linker()
987 (arg0,): (wasmtime::component::__internal::Vec<f32>,)| in add_to_linker()
994 wasmtime::component::__internal::Box::new( in add_to_linker()
1016 (arg0,): (wasmtime::component::__internal::Vec<f64>,)| in add_to_linker()
1023 wasmtime::component::__internal::Box::new( in add_to_linker()
1049 wasmtime::component::__internal::Box::new( in add_to_linker()
1072 wasmtime::component::__internal::Box::new( in add_to_linker()
1095 wasmtime::component::__internal::Box::new( in add_to_linker()
1118 wasmtime::component::__internal::Box::new( in add_to_linker()
1141 wasmtime::component::__internal::Box::new( in add_to_linker()
1164 wasmtime::component::__internal::Box::new( in add_to_linker()
1187 wasmtime::component::__internal::Box::new( in add_to_linker()
1210 wasmtime::component::__internal::Box::new( in add_to_linker()
1233 wasmtime::component::__internal::Box::new( in add_to_linker()
1256 wasmtime::component::__internal::Box::new( in add_to_linker()
1275 (arg0,): (wasmtime::component::__internal::Vec<(u8, i8)>,)| in add_to_linker()
1282 wasmtime::component::__internal::Box::new( in add_to_linker()
1307 wasmtime::component::__internal::Vec< in add_to_linker()
1308 wasmtime::component::__internal::String, in add_to_linker()
1317 wasmtime::component::__internal::Box::new( in add_to_linker()
1343 wasmtime::component::__internal::Box::new( in add_to_linker()
1365 wasmtime::component::__internal::Vec< in add_to_linker()
1366 (u8, wasmtime::component::__internal::String), in add_to_linker()
1375 wasmtime::component::__internal::Box::new( in add_to_linker()
1400 wasmtime::component::__internal::Vec< in add_to_linker()
1401 wasmtime::component::__internal::String, in add_to_linker()
1410 wasmtime::component::__internal::Box::new( in add_to_linker()
1432 (arg0,): (wasmtime::component::__internal::Vec<SomeRecord>,)| in add_to_linker()
1439 wasmtime::component::__internal::Box::new( in add_to_linker()
1461 (arg0,): (wasmtime::component::__internal::Vec<OtherRecord>,)| in add_to_linker()
1468 wasmtime::component::__internal::Box::new( in add_to_linker()
1490 (arg0,): (wasmtime::component::__internal::Vec<SomeVariant>,)| in add_to_linker()
1497 wasmtime::component::__internal::Box::new( in add_to_linker()
1526 wasmtime::component::__internal::Box::new( in add_to_linker()
1555 use wasmtime::component::__internal::Box;
1556 #[derive(wasmtime::component::ComponentType)]
1557 #[derive(wasmtime::component::Lift)]
1558 #[derive(wasmtime::component::Lower)]
1559 #[component(record)]
1562 #[component(name = "a1")]
1564 #[component(name = "a2")]
1566 #[component(name = "a3")]
1568 #[component(name = "a4")]
1570 #[component(name = "b")]
1571 pub b: wasmtime::component::__internal::String,
1572 #[component(name = "c")]
1573 pub c: wasmtime::component::__internal::Vec<u8>,
1592 48 == < OtherRecord as wasmtime::component::ComponentType
1596 8 == < OtherRecord as wasmtime::component::ComponentType
1600 #[derive(wasmtime::component::ComponentType)]
1601 #[derive(wasmtime::component::Lift)]
1602 #[derive(wasmtime::component::Lower)]
1603 #[component(record)]
1606 #[component(name = "x")]
1607 pub x: wasmtime::component::__internal::String,
1608 #[component(name = "y")]
1610 #[component(name = "z")]
1611 pub z: wasmtime::component::__internal::Vec<OtherRecord>,
1612 #[component(name = "c1")]
1614 #[component(name = "c2")]
1616 #[component(name = "c3")]
1618 #[component(name = "c4")]
1639 96 == < SomeRecord as wasmtime::component::ComponentType
1643 8 == < SomeRecord as wasmtime::component::ComponentType
1647 #[derive(wasmtime::component::ComponentType)]
1648 #[derive(wasmtime::component::Lift)]
1649 #[derive(wasmtime::component::Lower)]
1650 #[component(variant)]
1653 #[component(name = "a")]
1655 #[component(name = "b")]
1657 #[component(name = "c")]
1658 C(wasmtime::component::__internal::String),
1678 12 == < OtherVariant as wasmtime::component::ComponentType
1682 4 == < OtherVariant as wasmtime::component::ComponentType
1686 #[derive(wasmtime::component::ComponentType)]
1687 #[derive(wasmtime::component::Lift)]
1688 #[derive(wasmtime::component::Lower)]
1689 #[component(variant)]
1692 #[component(name = "a")]
1693 A(wasmtime::component::__internal::String),
1694 #[component(name = "b")]
1696 #[component(name = "c")]
1698 #[component(name = "d")]
1699 D(wasmtime::component::__internal::Vec<OtherVariant>),
1722 12 == < SomeVariant as wasmtime::component::ComponentType
1726 4 == < SomeVariant as wasmtime::component::ComponentType
1730 pub type LoadStoreAllSizes = wasmtime::component::__internal::Vec<
1732 wasmtime::component::__internal::String,
1748 8 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1752 4 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1758 list_u8_param: wasmtime::component::Func,
1759 list_u16_param: wasmtime::component::Func,
1760 list_u32_param: wasmtime::component::Func,
1761 list_u64_param: wasmtime::component::Func,
1762 list_s8_param: wasmtime::component::Func,
1763 list_s16_param: wasmtime::component::Func,
1764 list_s32_param: wasmtime::component::Func,
1765 list_s64_param: wasmtime::component::Func,
1766 list_f32_param: wasmtime::component::Func,
1767 list_f64_param: wasmtime::component::Func,
1768 list_u8_ret: wasmtime::component::Func,
1769 list_u16_ret: wasmtime::component::Func,
1770 list_u32_ret: wasmtime::component::Func,
1771 list_u64_ret: wasmtime::component::Func,
1772 list_s8_ret: wasmtime::component::Func,
1773 list_s16_ret: wasmtime::component::Func,
1774 list_s32_ret: wasmtime::component::Func,
1775 list_s64_ret: wasmtime::component::Func,
1776 list_f32_ret: wasmtime::component::Func,
1777 list_f64_ret: wasmtime::component::Func,
1778 tuple_list: wasmtime::component::Func,
1779 string_list_arg: wasmtime::component::Func,
1780 string_list_ret: wasmtime::component::Func,
1781 tuple_string_list: wasmtime::component::Func,
1782 string_list: wasmtime::component::Func,
1783 record_list: wasmtime::component::Func,
1784 record_list_reverse: wasmtime::component::Func,
1785 variant_list: wasmtime::component::Func,
1786 load_store_everything: wasmtime::component::Func,
1790 list_u8_param: wasmtime::component::ComponentExportIndex,
1791 list_u16_param: wasmtime::component::ComponentExportIndex,
1792 list_u32_param: wasmtime::component::ComponentExportIndex,
1793 list_u64_param: wasmtime::component::ComponentExportIndex,
1794 list_s8_param: wasmtime::component::ComponentExportIndex,
1795 list_s16_param: wasmtime::component::ComponentExportIndex,
1796 list_s32_param: wasmtime::component::ComponentExportIndex,
1797 list_s64_param: wasmtime::component::ComponentExportIndex,
1798 list_f32_param: wasmtime::component::ComponentExportIndex,
1799 list_f64_param: wasmtime::component::ComponentExportIndex,
1800 list_u8_ret: wasmtime::component::ComponentExportIndex,
1801 list_u16_ret: wasmtime::component::ComponentExportIndex,
1802 list_u32_ret: wasmtime::component::ComponentExportIndex,
1803 list_u64_ret: wasmtime::component::ComponentExportIndex,
1804 list_s8_ret: wasmtime::component::ComponentExportIndex,
1805 list_s16_ret: wasmtime::component::ComponentExportIndex,
1806 list_s32_ret: wasmtime::component::ComponentExportIndex,
1807 list_s64_ret: wasmtime::component::ComponentExportIndex,
1808 list_f32_ret: wasmtime::component::ComponentExportIndex,
1809 list_f64_ret: wasmtime::component::ComponentExportIndex,
1810 tuple_list: wasmtime::component::ComponentExportIndex,
1811 string_list_arg: wasmtime::component::ComponentExportIndex,
1812 string_list_ret: wasmtime::component::ComponentExportIndex,
1813 tuple_string_list: wasmtime::component::ComponentExportIndex,
1814 string_list: wasmtime::component::ComponentExportIndex,
1815 record_list: wasmtime::component::ComponentExportIndex,
1816 record_list_reverse: wasmtime::component::ComponentExportIndex,
1817 variant_list: wasmtime::component::ComponentExportIndex,
1818 load_store_everything: wasmtime::component::ComponentExportIndex,
1828 _instance_pre: &wasmtime::component::InstancePre<_T>, in new()
1831 .component() in new()
1840 .component() in new()
1914 instance: &wasmtime::component::Instance, in load()
1984 (wasmtime::component::__internal::Vec<u8>,), in load()
1990 (wasmtime::component::__internal::Vec<u16>,), in load()
1996 (wasmtime::component::__internal::Vec<u32>,), in load()
2002 (wasmtime::component::__internal::Vec<u64>,), in load()
2008 (wasmtime::component::__internal::Vec<i8>,), in load()
2014 (wasmtime::component::__internal::Vec<i16>,), in load()
2020 (wasmtime::component::__internal::Vec<i32>,), in load()
2026 (wasmtime::component::__internal::Vec<i64>,), in load()
2032 (wasmtime::component::__internal::Vec<f32>,), in load()
2038 (wasmtime::component::__internal::Vec<f64>,), in load()
2044 (wasmtime::component::__internal::Vec<(i64, u32)>,), in load()
2049 (&[wasmtime::component::__internal::String],), in load()
2057 wasmtime::component::__internal::Vec< in load()
2058 wasmtime::component::__internal::String, in load()
2065 (&[(u8, wasmtime::component::__internal::String)],), in load()
2067 wasmtime::component::__internal::Vec< in load()
2068 (wasmtime::component::__internal::String, u8), in load()
2075 (&[wasmtime::component::__internal::String],), in load()
2077 wasmtime::component::__internal::Vec< in load()
2078 wasmtime::component::__internal::String, in load()
2086 (wasmtime::component::__internal::Vec<OtherRecord>,), in load()
2092 (wasmtime::component::__internal::Vec<SomeRecord>,), in load()
2098 (wasmtime::component::__internal::Vec<OtherVariant>,), in load()
2155 wasmtime::component::TypedFunc::< in call_list_u8_param()
2180 wasmtime::component::TypedFunc::< in call_list_u16_param()
2205 wasmtime::component::TypedFunc::< in call_list_u32_param()
2230 wasmtime::component::TypedFunc::< in call_list_u64_param()
2255 wasmtime::component::TypedFunc::< in call_list_s8_param()
2280 wasmtime::component::TypedFunc::< in call_list_s16_param()
2305 wasmtime::component::TypedFunc::< in call_list_s32_param()
2330 wasmtime::component::TypedFunc::< in call_list_s64_param()
2355 wasmtime::component::TypedFunc::< in call_list_f32_param()
2380 wasmtime::component::TypedFunc::< in call_list_f64_param()
2394 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u8>> in call_list_u8_ret()
2404 wasmtime::component::TypedFunc::< in call_list_u8_ret()
2406 (wasmtime::component::__internal::Vec<u8>,), in call_list_u8_ret()
2418 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u16>> in call_list_u16_ret()
2428 wasmtime::component::TypedFunc::< in call_list_u16_ret()
2430 (wasmtime::component::__internal::Vec<u16>,), in call_list_u16_ret()
2442 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u32>> in call_list_u32_ret()
2452 wasmtime::component::TypedFunc::< in call_list_u32_ret()
2454 (wasmtime::component::__internal::Vec<u32>,), in call_list_u32_ret()
2466 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u64>> in call_list_u64_ret()
2476 wasmtime::component::TypedFunc::< in call_list_u64_ret()
2478 (wasmtime::component::__internal::Vec<u64>,), in call_list_u64_ret()
2490 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i8>> in call_list_s8_ret()
2500 wasmtime::component::TypedFunc::< in call_list_s8_ret()
2502 (wasmtime::component::__internal::Vec<i8>,), in call_list_s8_ret()
2514 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i16>> in call_list_s16_ret()
2524 wasmtime::component::TypedFunc::< in call_list_s16_ret()
2526 (wasmtime::component::__internal::Vec<i16>,), in call_list_s16_ret()
2538 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i32>> in call_list_s32_ret()
2548 wasmtime::component::TypedFunc::< in call_list_s32_ret()
2550 (wasmtime::component::__internal::Vec<i32>,), in call_list_s32_ret()
2562 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i64>> in call_list_s64_ret()
2572 wasmtime::component::TypedFunc::< in call_list_s64_ret()
2574 (wasmtime::component::__internal::Vec<i64>,), in call_list_s64_ret()
2586 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f32>> in call_list_f32_ret()
2596 wasmtime::component::TypedFunc::< in call_list_f32_ret()
2598 (wasmtime::component::__internal::Vec<f32>,), in call_list_f32_ret()
2610 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f64>> in call_list_f64_ret()
2620 wasmtime::component::TypedFunc::< in call_list_f64_ret()
2622 (wasmtime::component::__internal::Vec<f64>,), in call_list_f64_ret()
2636 wasmtime::component::__internal::Vec<(i64, u32)>, in call_tuple_list()
2647 wasmtime::component::TypedFunc::< in call_tuple_list()
2649 (wasmtime::component::__internal::Vec<(i64, u32)>,), in call_tuple_list()
2661 arg0: &[wasmtime::component::__internal::String], in call_string_list_arg()
2672 wasmtime::component::TypedFunc::< in call_string_list_arg()
2673 (&[wasmtime::component::__internal::String],), in call_string_list_arg()
2687 wasmtime::component::__internal::Vec< in call_string_list_ret()
2688 wasmtime::component::__internal::String, in call_string_list_ret()
2700 wasmtime::component::TypedFunc::< in call_string_list_ret()
2703 wasmtime::component::__internal::Vec< in call_string_list_ret()
2704 wasmtime::component::__internal::String, in call_string_list_ret()
2718 arg0: &[(u8, wasmtime::component::__internal::String)], in call_tuple_string_list()
2720 wasmtime::component::__internal::Vec< in call_tuple_string_list()
2721 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
2733 wasmtime::component::TypedFunc::< in call_tuple_string_list()
2734 (&[(u8, wasmtime::component::__internal::String)],), in call_tuple_string_list()
2736 wasmtime::component::__internal::Vec< in call_tuple_string_list()
2737 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
2751 arg0: &[wasmtime::component::__internal::String], in call_string_list()
2753 wasmtime::component::__internal::Vec< in call_string_list()
2754 wasmtime::component::__internal::String, in call_string_list()
2766 wasmtime::component::TypedFunc::< in call_string_list()
2767 (&[wasmtime::component::__internal::String],), in call_string_list()
2769 wasmtime::component::__internal::Vec< in call_string_list()
2770 wasmtime::component::__internal::String, in call_string_list()
2786 wasmtime::component::__internal::Vec<OtherRecord>, in call_record_list()
2797 wasmtime::component::TypedFunc::< in call_record_list()
2799 (wasmtime::component::__internal::Vec<OtherRecord>,), in call_record_list()
2813 wasmtime::component::__internal::Vec<SomeRecord>, in call_record_list_reverse()
2824 wasmtime::component::TypedFunc::< in call_record_list_reverse()
2826 (wasmtime::component::__internal::Vec<SomeRecord>,), in call_record_list_reverse()
2840 wasmtime::component::__internal::Vec<OtherVariant>, in call_variant_list()
2851 wasmtime::component::TypedFunc::< in call_variant_list()
2853 (wasmtime::component::__internal::Vec<OtherVariant>,), in call_variant_list()
2876 wasmtime::component::TypedFunc::< in call_load_store_everything()