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 {
374 accessor: &wasmtime::component::Accessor<T, Self>, in list_u8_param()
375 x: wasmtime::component::__internal::Vec<u8>, in list_u8_param()
378 accessor: &wasmtime::component::Accessor<T, Self>, in list_u16_param()
379 x: wasmtime::component::__internal::Vec<u16>, in list_u16_param()
382 accessor: &wasmtime::component::Accessor<T, Self>, in list_u32_param()
383 x: wasmtime::component::__internal::Vec<u32>, in list_u32_param()
386 accessor: &wasmtime::component::Accessor<T, Self>, in list_u64_param()
387 x: wasmtime::component::__internal::Vec<u64>, in list_u64_param()
390 accessor: &wasmtime::component::Accessor<T, Self>, in list_s8_param()
391 x: wasmtime::component::__internal::Vec<i8>, in list_s8_param()
394 accessor: &wasmtime::component::Accessor<T, Self>, in list_s16_param()
395 x: wasmtime::component::__internal::Vec<i16>, in list_s16_param()
398 accessor: &wasmtime::component::Accessor<T, Self>, in list_s32_param()
399 x: wasmtime::component::__internal::Vec<i32>, in list_s32_param()
402 accessor: &wasmtime::component::Accessor<T, Self>, in list_s64_param()
403 x: wasmtime::component::__internal::Vec<i64>, in list_s64_param()
406 accessor: &wasmtime::component::Accessor<T, Self>, in list_f32_param()
407 x: wasmtime::component::__internal::Vec<f32>, in list_f32_param()
410 accessor: &wasmtime::component::Accessor<T, Self>, in list_f64_param()
411 x: wasmtime::component::__internal::Vec<f64>, in list_f64_param()
414 accessor: &wasmtime::component::Accessor<T, Self>, in list_u8_ret()
416 Output = wasmtime::component::__internal::Vec<u8>, in list_u8_ret()
419 accessor: &wasmtime::component::Accessor<T, Self>, in list_u16_ret()
421 Output = wasmtime::component::__internal::Vec<u16>, in list_u16_ret()
424 accessor: &wasmtime::component::Accessor<T, Self>, in list_u32_ret()
426 Output = wasmtime::component::__internal::Vec<u32>, in list_u32_ret()
429 accessor: &wasmtime::component::Accessor<T, Self>, in list_u64_ret()
431 Output = wasmtime::component::__internal::Vec<u64>, in list_u64_ret()
434 accessor: &wasmtime::component::Accessor<T, Self>, in list_s8_ret()
436 Output = wasmtime::component::__internal::Vec<i8>, in list_s8_ret()
439 accessor: &wasmtime::component::Accessor<T, Self>, in list_s16_ret()
441 Output = wasmtime::component::__internal::Vec<i16>, in list_s16_ret()
444 accessor: &wasmtime::component::Accessor<T, Self>, in list_s32_ret()
446 Output = wasmtime::component::__internal::Vec<i32>, in list_s32_ret()
449 accessor: &wasmtime::component::Accessor<T, Self>, in list_s64_ret()
451 Output = wasmtime::component::__internal::Vec<i64>, in list_s64_ret()
454 accessor: &wasmtime::component::Accessor<T, Self>, in list_f32_ret()
456 Output = wasmtime::component::__internal::Vec<f32>, in list_f32_ret()
459 accessor: &wasmtime::component::Accessor<T, Self>, in list_f64_ret()
461 Output = wasmtime::component::__internal::Vec<f64>, in list_f64_ret()
464 accessor: &wasmtime::component::Accessor<T, Self>, in tuple_list()
465 x: wasmtime::component::__internal::Vec<(u8, i8)>, in tuple_list()
467 Output = wasmtime::component::__internal::Vec<(i64, u32)>, in tuple_list()
470 accessor: &wasmtime::component::Accessor<T, Self>, in string_list_arg()
471 a: wasmtime::component::__internal::Vec< in string_list_arg()
472 wasmtime::component::__internal::String, in string_list_arg()
476 accessor: &wasmtime::component::Accessor<T, Self>, in string_list_ret()
478 Output = wasmtime::component::__internal::Vec< in string_list_ret()
479 wasmtime::component::__internal::String, in string_list_ret()
483 accessor: &wasmtime::component::Accessor<T, Self>, in tuple_string_list()
484 x: wasmtime::component::__internal::Vec< in tuple_string_list()
485 (u8, wasmtime::component::__internal::String), in tuple_string_list()
488 Output = wasmtime::component::__internal::Vec< in tuple_string_list()
489 (wasmtime::component::__internal::String, u8), in tuple_string_list()
493 accessor: &wasmtime::component::Accessor<T, Self>, in string_list()
494 x: wasmtime::component::__internal::Vec< in string_list()
495 wasmtime::component::__internal::String, in string_list()
498 Output = wasmtime::component::__internal::Vec< in string_list()
499 wasmtime::component::__internal::String, in string_list()
503 accessor: &wasmtime::component::Accessor<T, Self>, in record_list()
504 x: wasmtime::component::__internal::Vec<SomeRecord>, in record_list()
506 Output = wasmtime::component::__internal::Vec<OtherRecord>, in record_list()
509 accessor: &wasmtime::component::Accessor<T, Self>, in record_list_reverse()
510 x: wasmtime::component::__internal::Vec<OtherRecord>, in record_list_reverse()
512 Output = wasmtime::component::__internal::Vec<SomeRecord>, in record_list_reverse()
515 accessor: &wasmtime::component::Accessor<T, Self>, in variant_list()
516 x: wasmtime::component::__internal::Vec<SomeVariant>, in variant_list()
518 Output = wasmtime::component::__internal::Vec<OtherVariant>, in variant_list()
521 accessor: &wasmtime::component::Accessor<T, Self>, in load_store_everything()
528 linker: &mut wasmtime::component::Linker<T>, in add_to_linker()
540 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
541 (arg0,): (wasmtime::component::__internal::Vec<u8>,)| in add_to_linker()
543 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
554 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
555 (arg0,): (wasmtime::component::__internal::Vec<u16>,)| in add_to_linker()
557 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
568 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
569 (arg0,): (wasmtime::component::__internal::Vec<u32>,)| in add_to_linker()
571 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
582 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
583 (arg0,): (wasmtime::component::__internal::Vec<u64>,)| in add_to_linker()
585 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
596 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
597 (arg0,): (wasmtime::component::__internal::Vec<i8>,)| in add_to_linker()
599 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
610 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
611 (arg0,): (wasmtime::component::__internal::Vec<i16>,)| in add_to_linker()
613 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
624 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
625 (arg0,): (wasmtime::component::__internal::Vec<i32>,)| in add_to_linker()
627 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
638 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
639 (arg0,): (wasmtime::component::__internal::Vec<i64>,)| in add_to_linker()
641 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
652 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
653 (arg0,): (wasmtime::component::__internal::Vec<f32>,)| in add_to_linker()
655 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
666 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
667 (arg0,): (wasmtime::component::__internal::Vec<f64>,)| in add_to_linker()
669 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
679 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
680 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
689 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
690 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
699 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
700 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
709 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
710 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
719 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
720 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
729 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
730 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
739 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
740 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
749 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
750 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
759 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
760 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
769 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
770 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
780 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
781 (arg0,): (wasmtime::component::__internal::Vec<(u8, i8)>,)| in add_to_linker()
783 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
793 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
797 wasmtime::component::__internal::Vec< in add_to_linker()
798 wasmtime::component::__internal::String, in add_to_linker()
802 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
812 move |caller: &wasmtime::component::Accessor<T>, (): ()| { in add_to_linker()
813 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
823 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
827 wasmtime::component::__internal::Vec< in add_to_linker()
828 (u8, wasmtime::component::__internal::String), in add_to_linker()
832 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
843 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
847 wasmtime::component::__internal::Vec< in add_to_linker()
848 wasmtime::component::__internal::String, in add_to_linker()
852 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
862 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
863 (arg0,): (wasmtime::component::__internal::Vec<SomeRecord>,)| in add_to_linker()
865 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
875 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
876 (arg0,): (wasmtime::component::__internal::Vec<OtherRecord>,)| in add_to_linker()
878 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
889 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
890 (arg0,): (wasmtime::component::__internal::Vec<SomeVariant>,)| in add_to_linker()
892 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
902 caller: &wasmtime::component::Accessor<T>, in add_to_linker()
905 wasmtime::component::__internal::Box::pin(async move { in add_to_linker()
927 use wasmtime::component::__internal::Box;
928 #[derive(wasmtime::component::ComponentType)]
929 #[derive(wasmtime::component::Lift)]
930 #[derive(wasmtime::component::Lower)]
931 #[component(record)]
934 #[component(name = "a1")]
936 #[component(name = "a2")]
938 #[component(name = "a3")]
940 #[component(name = "a4")]
942 #[component(name = "b")]
943 pub b: wasmtime::component::__internal::String,
944 #[component(name = "c")]
945 pub c: wasmtime::component::__internal::Vec<u8>,
964 48 == < OtherRecord as wasmtime::component::ComponentType
968 8 == < OtherRecord as wasmtime::component::ComponentType
972 #[derive(wasmtime::component::ComponentType)]
973 #[derive(wasmtime::component::Lift)]
974 #[derive(wasmtime::component::Lower)]
975 #[component(record)]
978 #[component(name = "x")]
979 pub x: wasmtime::component::__internal::String,
980 #[component(name = "y")]
982 #[component(name = "z")]
983 pub z: wasmtime::component::__internal::Vec<OtherRecord>,
984 #[component(name = "c1")]
986 #[component(name = "c2")]
988 #[component(name = "c3")]
990 #[component(name = "c4")]
1011 96 == < SomeRecord as wasmtime::component::ComponentType
1015 8 == < SomeRecord as wasmtime::component::ComponentType
1019 #[derive(wasmtime::component::ComponentType)]
1020 #[derive(wasmtime::component::Lift)]
1021 #[derive(wasmtime::component::Lower)]
1022 #[component(variant)]
1025 #[component(name = "a")]
1027 #[component(name = "b")]
1029 #[component(name = "c")]
1030 C(wasmtime::component::__internal::String),
1050 12 == < OtherVariant as wasmtime::component::ComponentType
1054 4 == < OtherVariant as wasmtime::component::ComponentType
1058 #[derive(wasmtime::component::ComponentType)]
1059 #[derive(wasmtime::component::Lift)]
1060 #[derive(wasmtime::component::Lower)]
1061 #[component(variant)]
1064 #[component(name = "a")]
1065 A(wasmtime::component::__internal::String),
1066 #[component(name = "b")]
1068 #[component(name = "c")]
1070 #[component(name = "d")]
1071 D(wasmtime::component::__internal::Vec<OtherVariant>),
1094 12 == < SomeVariant as wasmtime::component::ComponentType
1098 4 == < SomeVariant as wasmtime::component::ComponentType
1102 pub type LoadStoreAllSizes = wasmtime::component::__internal::Vec<
1104 wasmtime::component::__internal::String,
1120 8 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1124 4 == < LoadStoreAllSizes as wasmtime::component::ComponentType
1130 list_u8_param: wasmtime::component::Func,
1131 list_u16_param: wasmtime::component::Func,
1132 list_u32_param: wasmtime::component::Func,
1133 list_u64_param: wasmtime::component::Func,
1134 list_s8_param: wasmtime::component::Func,
1135 list_s16_param: wasmtime::component::Func,
1136 list_s32_param: wasmtime::component::Func,
1137 list_s64_param: wasmtime::component::Func,
1138 list_f32_param: wasmtime::component::Func,
1139 list_f64_param: wasmtime::component::Func,
1140 list_u8_ret: wasmtime::component::Func,
1141 list_u16_ret: wasmtime::component::Func,
1142 list_u32_ret: wasmtime::component::Func,
1143 list_u64_ret: wasmtime::component::Func,
1144 list_s8_ret: wasmtime::component::Func,
1145 list_s16_ret: wasmtime::component::Func,
1146 list_s32_ret: wasmtime::component::Func,
1147 list_s64_ret: wasmtime::component::Func,
1148 list_f32_ret: wasmtime::component::Func,
1149 list_f64_ret: wasmtime::component::Func,
1150 tuple_list: wasmtime::component::Func,
1151 string_list_arg: wasmtime::component::Func,
1152 string_list_ret: wasmtime::component::Func,
1153 tuple_string_list: wasmtime::component::Func,
1154 string_list: wasmtime::component::Func,
1155 record_list: wasmtime::component::Func,
1156 record_list_reverse: wasmtime::component::Func,
1157 variant_list: wasmtime::component::Func,
1158 load_store_everything: wasmtime::component::Func,
1162 list_u8_param: wasmtime::component::ComponentExportIndex,
1163 list_u16_param: wasmtime::component::ComponentExportIndex,
1164 list_u32_param: wasmtime::component::ComponentExportIndex,
1165 list_u64_param: wasmtime::component::ComponentExportIndex,
1166 list_s8_param: wasmtime::component::ComponentExportIndex,
1167 list_s16_param: wasmtime::component::ComponentExportIndex,
1168 list_s32_param: wasmtime::component::ComponentExportIndex,
1169 list_s64_param: wasmtime::component::ComponentExportIndex,
1170 list_f32_param: wasmtime::component::ComponentExportIndex,
1171 list_f64_param: wasmtime::component::ComponentExportIndex,
1172 list_u8_ret: wasmtime::component::ComponentExportIndex,
1173 list_u16_ret: wasmtime::component::ComponentExportIndex,
1174 list_u32_ret: wasmtime::component::ComponentExportIndex,
1175 list_u64_ret: wasmtime::component::ComponentExportIndex,
1176 list_s8_ret: wasmtime::component::ComponentExportIndex,
1177 list_s16_ret: wasmtime::component::ComponentExportIndex,
1178 list_s32_ret: wasmtime::component::ComponentExportIndex,
1179 list_s64_ret: wasmtime::component::ComponentExportIndex,
1180 list_f32_ret: wasmtime::component::ComponentExportIndex,
1181 list_f64_ret: wasmtime::component::ComponentExportIndex,
1182 tuple_list: wasmtime::component::ComponentExportIndex,
1183 string_list_arg: wasmtime::component::ComponentExportIndex,
1184 string_list_ret: wasmtime::component::ComponentExportIndex,
1185 tuple_string_list: wasmtime::component::ComponentExportIndex,
1186 string_list: wasmtime::component::ComponentExportIndex,
1187 record_list: wasmtime::component::ComponentExportIndex,
1188 record_list_reverse: wasmtime::component::ComponentExportIndex,
1189 variant_list: wasmtime::component::ComponentExportIndex,
1190 load_store_everything: wasmtime::component::ComponentExportIndex,
1200 _instance_pre: &wasmtime::component::InstancePre<_T>, in new()
1203 .component() in new()
1212 .component() in new()
1286 instance: &wasmtime::component::Instance, in load()
1356 (wasmtime::component::__internal::Vec<u8>,), in load()
1362 (wasmtime::component::__internal::Vec<u16>,), in load()
1368 (wasmtime::component::__internal::Vec<u32>,), in load()
1374 (wasmtime::component::__internal::Vec<u64>,), in load()
1380 (wasmtime::component::__internal::Vec<i8>,), in load()
1386 (wasmtime::component::__internal::Vec<i16>,), in load()
1392 (wasmtime::component::__internal::Vec<i32>,), in load()
1398 (wasmtime::component::__internal::Vec<i64>,), in load()
1404 (wasmtime::component::__internal::Vec<f32>,), in load()
1410 (wasmtime::component::__internal::Vec<f64>,), in load()
1416 (wasmtime::component::__internal::Vec<(i64, u32)>,), in load()
1421 (&[wasmtime::component::__internal::String],), in load()
1429 wasmtime::component::__internal::Vec< in load()
1430 wasmtime::component::__internal::String, in load()
1437 (&[(u8, wasmtime::component::__internal::String)],), in load()
1439 wasmtime::component::__internal::Vec< in load()
1440 (wasmtime::component::__internal::String, u8), in load()
1447 (&[wasmtime::component::__internal::String],), in load()
1449 wasmtime::component::__internal::Vec< in load()
1450 wasmtime::component::__internal::String, in load()
1458 (wasmtime::component::__internal::Vec<OtherRecord>,), in load()
1464 (wasmtime::component::__internal::Vec<SomeRecord>,), in load()
1470 (wasmtime::component::__internal::Vec<OtherVariant>,), in load()
1515 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u8_param()
1516 arg0: wasmtime::component::__internal::Vec<u8>, in call_list_u8_param()
1520 _D: wasmtime::component::HasData, in call_list_u8_param()
1523 wasmtime::component::TypedFunc::< in call_list_u8_param()
1524 (wasmtime::component::__internal::Vec<u8>,), in call_list_u8_param()
1533 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u16_param()
1534 arg0: wasmtime::component::__internal::Vec<u16>, in call_list_u16_param()
1538 _D: wasmtime::component::HasData, in call_list_u16_param()
1541 wasmtime::component::TypedFunc::< in call_list_u16_param()
1542 (wasmtime::component::__internal::Vec<u16>,), in call_list_u16_param()
1551 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u32_param()
1552 arg0: wasmtime::component::__internal::Vec<u32>, in call_list_u32_param()
1556 _D: wasmtime::component::HasData, in call_list_u32_param()
1559 wasmtime::component::TypedFunc::< in call_list_u32_param()
1560 (wasmtime::component::__internal::Vec<u32>,), in call_list_u32_param()
1569 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u64_param()
1570 arg0: wasmtime::component::__internal::Vec<u64>, in call_list_u64_param()
1574 _D: wasmtime::component::HasData, in call_list_u64_param()
1577 wasmtime::component::TypedFunc::< in call_list_u64_param()
1578 (wasmtime::component::__internal::Vec<u64>,), in call_list_u64_param()
1587 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s8_param()
1588 arg0: wasmtime::component::__internal::Vec<i8>, in call_list_s8_param()
1592 _D: wasmtime::component::HasData, in call_list_s8_param()
1595 wasmtime::component::TypedFunc::< in call_list_s8_param()
1596 (wasmtime::component::__internal::Vec<i8>,), in call_list_s8_param()
1605 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s16_param()
1606 arg0: wasmtime::component::__internal::Vec<i16>, in call_list_s16_param()
1610 _D: wasmtime::component::HasData, in call_list_s16_param()
1613 wasmtime::component::TypedFunc::< in call_list_s16_param()
1614 (wasmtime::component::__internal::Vec<i16>,), in call_list_s16_param()
1623 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s32_param()
1624 arg0: wasmtime::component::__internal::Vec<i32>, in call_list_s32_param()
1628 _D: wasmtime::component::HasData, in call_list_s32_param()
1631 wasmtime::component::TypedFunc::< in call_list_s32_param()
1632 (wasmtime::component::__internal::Vec<i32>,), in call_list_s32_param()
1641 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s64_param()
1642 arg0: wasmtime::component::__internal::Vec<i64>, in call_list_s64_param()
1646 _D: wasmtime::component::HasData, in call_list_s64_param()
1649 wasmtime::component::TypedFunc::< in call_list_s64_param()
1650 (wasmtime::component::__internal::Vec<i64>,), in call_list_s64_param()
1659 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_f32_param()
1660 arg0: wasmtime::component::__internal::Vec<f32>, in call_list_f32_param()
1664 _D: wasmtime::component::HasData, in call_list_f32_param()
1667 wasmtime::component::TypedFunc::< in call_list_f32_param()
1668 (wasmtime::component::__internal::Vec<f32>,), in call_list_f32_param()
1677 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_f64_param()
1678 arg0: wasmtime::component::__internal::Vec<f64>, in call_list_f64_param()
1682 _D: wasmtime::component::HasData, in call_list_f64_param()
1685 wasmtime::component::TypedFunc::< in call_list_f64_param()
1686 (wasmtime::component::__internal::Vec<f64>,), in call_list_f64_param()
1695 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u8_ret()
1696 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u8>> in call_list_u8_ret()
1699 _D: wasmtime::component::HasData, in call_list_u8_ret()
1702 wasmtime::component::TypedFunc::< in call_list_u8_ret()
1704 (wasmtime::component::__internal::Vec<u8>,), in call_list_u8_ret()
1712 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u16_ret()
1713 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u16>> in call_list_u16_ret()
1716 _D: wasmtime::component::HasData, in call_list_u16_ret()
1719 wasmtime::component::TypedFunc::< in call_list_u16_ret()
1721 (wasmtime::component::__internal::Vec<u16>,), in call_list_u16_ret()
1729 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u32_ret()
1730 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u32>> in call_list_u32_ret()
1733 _D: wasmtime::component::HasData, in call_list_u32_ret()
1736 wasmtime::component::TypedFunc::< in call_list_u32_ret()
1738 (wasmtime::component::__internal::Vec<u32>,), in call_list_u32_ret()
1746 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_u64_ret()
1747 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<u64>> in call_list_u64_ret()
1750 _D: wasmtime::component::HasData, in call_list_u64_ret()
1753 wasmtime::component::TypedFunc::< in call_list_u64_ret()
1755 (wasmtime::component::__internal::Vec<u64>,), in call_list_u64_ret()
1763 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s8_ret()
1764 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i8>> in call_list_s8_ret()
1767 _D: wasmtime::component::HasData, in call_list_s8_ret()
1770 wasmtime::component::TypedFunc::< in call_list_s8_ret()
1772 (wasmtime::component::__internal::Vec<i8>,), in call_list_s8_ret()
1780 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s16_ret()
1781 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i16>> in call_list_s16_ret()
1784 _D: wasmtime::component::HasData, in call_list_s16_ret()
1787 wasmtime::component::TypedFunc::< in call_list_s16_ret()
1789 (wasmtime::component::__internal::Vec<i16>,), in call_list_s16_ret()
1797 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s32_ret()
1798 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i32>> in call_list_s32_ret()
1801 _D: wasmtime::component::HasData, in call_list_s32_ret()
1804 wasmtime::component::TypedFunc::< in call_list_s32_ret()
1806 (wasmtime::component::__internal::Vec<i32>,), in call_list_s32_ret()
1814 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_s64_ret()
1815 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<i64>> in call_list_s64_ret()
1818 _D: wasmtime::component::HasData, in call_list_s64_ret()
1821 wasmtime::component::TypedFunc::< in call_list_s64_ret()
1823 (wasmtime::component::__internal::Vec<i64>,), in call_list_s64_ret()
1831 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_f32_ret()
1832 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f32>> in call_list_f32_ret()
1835 _D: wasmtime::component::HasData, in call_list_f32_ret()
1838 wasmtime::component::TypedFunc::< in call_list_f32_ret()
1840 (wasmtime::component::__internal::Vec<f32>,), in call_list_f32_ret()
1848 accessor: &wasmtime::component::Accessor<_T, _D>, in call_list_f64_ret()
1849 ) -> wasmtime::Result<wasmtime::component::__internal::Vec<f64>> in call_list_f64_ret()
1852 _D: wasmtime::component::HasData, in call_list_f64_ret()
1855 wasmtime::component::TypedFunc::< in call_list_f64_ret()
1857 (wasmtime::component::__internal::Vec<f64>,), in call_list_f64_ret()
1865 accessor: &wasmtime::component::Accessor<_T, _D>, in call_tuple_list()
1866 arg0: wasmtime::component::__internal::Vec<(u8, i8)>, in call_tuple_list()
1868 wasmtime::component::__internal::Vec<(i64, u32)>, in call_tuple_list()
1872 _D: wasmtime::component::HasData, in call_tuple_list()
1875 wasmtime::component::TypedFunc::< in call_tuple_list()
1876 (wasmtime::component::__internal::Vec<(u8, i8)>,), in call_tuple_list()
1877 (wasmtime::component::__internal::Vec<(i64, u32)>,), in call_tuple_list()
1885 accessor: &wasmtime::component::Accessor<_T, _D>, in call_string_list_arg()
1886 arg0: wasmtime::component::__internal::Vec< in call_string_list_arg()
1887 wasmtime::component::__internal::String, in call_string_list_arg()
1892 _D: wasmtime::component::HasData, in call_string_list_arg()
1895 wasmtime::component::TypedFunc::< in call_string_list_arg()
1897 wasmtime::component::__internal::Vec< in call_string_list_arg()
1898 wasmtime::component::__internal::String, in call_string_list_arg()
1909 accessor: &wasmtime::component::Accessor<_T, _D>, in call_string_list_ret()
1911 wasmtime::component::__internal::Vec< in call_string_list_ret()
1912 wasmtime::component::__internal::String, in call_string_list_ret()
1917 _D: wasmtime::component::HasData, in call_string_list_ret()
1920 wasmtime::component::TypedFunc::< in call_string_list_ret()
1923 wasmtime::component::__internal::Vec< in call_string_list_ret()
1924 wasmtime::component::__internal::String, in call_string_list_ret()
1934 accessor: &wasmtime::component::Accessor<_T, _D>, in call_tuple_string_list()
1935 arg0: wasmtime::component::__internal::Vec< in call_tuple_string_list()
1936 (u8, wasmtime::component::__internal::String), in call_tuple_string_list()
1939 wasmtime::component::__internal::Vec< in call_tuple_string_list()
1940 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
1945 _D: wasmtime::component::HasData, in call_tuple_string_list()
1948 wasmtime::component::TypedFunc::< in call_tuple_string_list()
1950 wasmtime::component::__internal::Vec< in call_tuple_string_list()
1951 (u8, wasmtime::component::__internal::String), in call_tuple_string_list()
1955 wasmtime::component::__internal::Vec< in call_tuple_string_list()
1956 (wasmtime::component::__internal::String, u8), in call_tuple_string_list()
1966 accessor: &wasmtime::component::Accessor<_T, _D>, in call_string_list()
1967 arg0: wasmtime::component::__internal::Vec< in call_string_list()
1968 wasmtime::component::__internal::String, in call_string_list()
1971 wasmtime::component::__internal::Vec< in call_string_list()
1972 wasmtime::component::__internal::String, in call_string_list()
1977 _D: wasmtime::component::HasData, in call_string_list()
1980 wasmtime::component::TypedFunc::< in call_string_list()
1982 wasmtime::component::__internal::Vec< in call_string_list()
1983 wasmtime::component::__internal::String, in call_string_list()
1987 wasmtime::component::__internal::Vec< in call_string_list()
1988 wasmtime::component::__internal::String, in call_string_list()
1998 accessor: &wasmtime::component::Accessor<_T, _D>, in call_record_list()
1999 arg0: wasmtime::component::__internal::Vec<SomeRecord>, in call_record_list()
2001 wasmtime::component::__internal::Vec<OtherRecord>, in call_record_list()
2005 _D: wasmtime::component::HasData, in call_record_list()
2008 wasmtime::component::TypedFunc::< in call_record_list()
2009 (wasmtime::component::__internal::Vec<SomeRecord>,), in call_record_list()
2010 (wasmtime::component::__internal::Vec<OtherRecord>,), in call_record_list()
2018 accessor: &wasmtime::component::Accessor<_T, _D>, in call_record_list_reverse()
2019 arg0: wasmtime::component::__internal::Vec<OtherRecord>, in call_record_list_reverse()
2021 wasmtime::component::__internal::Vec<SomeRecord>, in call_record_list_reverse()
2025 _D: wasmtime::component::HasData, in call_record_list_reverse()
2028 wasmtime::component::TypedFunc::< in call_record_list_reverse()
2029 (wasmtime::component::__internal::Vec<OtherRecord>,), in call_record_list_reverse()
2030 (wasmtime::component::__internal::Vec<SomeRecord>,), in call_record_list_reverse()
2038 accessor: &wasmtime::component::Accessor<_T, _D>, in call_variant_list()
2039 arg0: wasmtime::component::__internal::Vec<SomeVariant>, in call_variant_list()
2041 wasmtime::component::__internal::Vec<OtherVariant>, in call_variant_list()
2045 _D: wasmtime::component::HasData, in call_variant_list()
2048 wasmtime::component::TypedFunc::< in call_variant_list()
2049 (wasmtime::component::__internal::Vec<SomeVariant>,), in call_variant_list()
2050 (wasmtime::component::__internal::Vec<OtherVariant>,), in call_variant_list()
2058 accessor: &wasmtime::component::Accessor<_T, _D>, in call_load_store_everything()
2063 _D: wasmtime::component::HasData, in call_load_store_everything()
2066 wasmtime::component::TypedFunc::< in call_load_store_everything()