/// Auto-generated bindings for a pre-instantiated version of a /// component which implements the world `the-world`. /// /// This structure is created through [`TheWorldPre::new`] which /// takes a [`InstancePre`](wasmtime::component::InstancePre) that /// has been created through a [`Linker`](wasmtime::component::Linker). /// /// For more information see [`TheWorld`] as well. pub struct TheWorldPre { instance_pre: wasmtime::component::InstancePre, indices: TheWorldIndices, } impl Clone for TheWorldPre { fn clone(&self) -> Self { Self { instance_pre: self.instance_pre.clone(), indices: self.indices.clone(), } } } impl<_T> TheWorldPre<_T> { /// Creates a new copy of `TheWorldPre` bindings which can then /// be used to instantiate into a particular store. /// /// This method may fail if the component behind `instance_pre` /// does not have the required exports. pub fn new( instance_pre: wasmtime::component::InstancePre<_T>, ) -> wasmtime::Result { let indices = TheWorldIndices::new(instance_pre.component())?; Ok(Self { instance_pre, indices }) } pub fn engine(&self) -> &wasmtime::Engine { self.instance_pre.engine() } pub fn instance_pre(&self) -> &wasmtime::component::InstancePre<_T> { &self.instance_pre } /// Instantiates a new instance of [`TheWorld`] within the /// `store` provided. /// /// This function will use `self` as the pre-instantiated /// instance to perform instantiation. Afterwards the preloaded /// indices in `self` are used to lookup all exports on the /// resulting instance. pub async fn instantiate_async( &self, mut store: impl wasmtime::AsContextMut, ) -> wasmtime::Result where _T: Send, { let mut store = store.as_context_mut(); let instance = self.instance_pre.instantiate_async(&mut store).await?; self.indices.load(&mut store, &instance) } } /// Auto-generated bindings for index of the exports of /// `the-world`. /// /// This is an implementation detail of [`TheWorldPre`] and can /// be constructed if needed as well. /// /// For more information see [`TheWorld`] as well. #[derive(Clone)] pub struct TheWorldIndices { interface0: exports::foo::foo::conventions::GuestIndices, } /// Auto-generated bindings for an instance a component which /// implements the world `the-world`. /// /// This structure can be created through a number of means /// depending on your requirements and what you have on hand: /// /// * The most convenient way is to use /// [`TheWorld::instantiate_async`] which only needs a /// [`Store`], [`Component`], and [`Linker`]. /// /// * Alternatively you can create a [`TheWorldPre`] ahead of /// time with a [`Component`] to front-load string lookups /// of exports once instead of per-instantiation. This /// method then uses [`TheWorldPre::instantiate_async`] to /// create a [`TheWorld`]. /// /// * If you've instantiated the instance yourself already /// then you can use [`TheWorld::new`]. /// /// * You can also access the guts of instantiation through /// [`TheWorldIndices::new_instance`] followed /// by [`TheWorldIndices::load`] to crate an instance of this /// type. /// /// These methods are all equivalent to one another and move /// around the tradeoff of what work is performed when. /// /// [`Store`]: wasmtime::Store /// [`Component`]: wasmtime::component::Component /// [`Linker`]: wasmtime::component::Linker pub struct TheWorld { interface0: exports::foo::foo::conventions::Guest, } const _: () = { #[allow(unused_imports)] use wasmtime::component::__internal::anyhow; impl TheWorldIndices { /// Creates a new copy of `TheWorldIndices` bindings which can then /// be used to instantiate into a particular store. /// /// This method may fail if the component does not have the /// required exports. pub fn new( component: &wasmtime::component::Component, ) -> wasmtime::Result { let _component = component; let interface0 = exports::foo::foo::conventions::GuestIndices::new( _component, )?; Ok(TheWorldIndices { interface0 }) } /// Creates a new instance of [`TheWorldIndices`] from an /// instantiated component. /// /// This method of creating a [`TheWorld`] will perform string /// lookups for all exports when this method is called. This /// will only succeed if the provided instance matches the /// requirements of [`TheWorld`]. pub fn new_instance( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let _instance = instance; let interface0 = exports::foo::foo::conventions::GuestIndices::new_instance( &mut store, _instance, )?; Ok(TheWorldIndices { interface0 }) } /// Uses the indices stored in `self` to load an instance /// of [`TheWorld`] from the instance provided. /// /// Note that at this time this method will additionally /// perform type-checks of all exports. pub fn load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let _instance = instance; let interface0 = self.interface0.load(&mut store, &_instance)?; Ok(TheWorld { interface0 }) } } impl TheWorld { /// Convenience wrapper around [`TheWorldPre::new`] and /// [`TheWorldPre::instantiate_async`]. pub async fn instantiate_async<_T>( mut store: impl wasmtime::AsContextMut, component: &wasmtime::component::Component, linker: &wasmtime::component::Linker<_T>, ) -> wasmtime::Result where _T: Send, { let pre = linker.instantiate_pre(component)?; TheWorldPre::new(pre)?.instantiate_async(store).await } /// Convenience wrapper around [`TheWorldIndices::new_instance`] and /// [`TheWorldIndices::load`]. pub fn new( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let indices = TheWorldIndices::new_instance(&mut store, instance)?; indices.load(store, instance) } pub fn add_to_linker( linker: &mut wasmtime::component::Linker, get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static, ) -> wasmtime::Result<()> where T: Send, U: foo::foo::conventions::Host + Send, { foo::foo::conventions::add_to_linker(linker, get)?; Ok(()) } pub fn foo_foo_conventions(&self) -> &exports::foo::foo::conventions::Guest { &self.interface0 } } }; pub mod foo { pub mod foo { #[allow(clippy::all)] pub mod conventions { #[allow(unused_imports)] use wasmtime::component::__internal::{anyhow, Box}; #[derive(wasmtime::component::ComponentType)] #[derive(wasmtime::component::Lift)] #[derive(wasmtime::component::Lower)] #[component(record)] #[derive(Clone, Copy)] pub struct LudicrousSpeed { #[component(name = "how-fast-are-you-going")] pub how_fast_are_you_going: u32, #[component(name = "i-am-going-extremely-slow")] pub i_am_going_extremely_slow: u64, } impl core::fmt::Debug for LudicrousSpeed { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { f.debug_struct("LudicrousSpeed") .field("how-fast-are-you-going", &self.how_fast_are_you_going) .field( "i-am-going-extremely-slow", &self.i_am_going_extremely_slow, ) .finish() } } const _: () = { assert!( 16 == < LudicrousSpeed as wasmtime::component::ComponentType >::SIZE32 ); assert!( 8 == < LudicrousSpeed as wasmtime::component::ComponentType >::ALIGN32 ); }; #[wasmtime::component::__internal::trait_variant_make(::core::marker::Send)] pub trait Host: Send { async fn kebab_case(&mut self) -> (); async fn foo(&mut self, x: LudicrousSpeed) -> (); async fn function_with_dashes(&mut self) -> (); async fn function_with_no_weird_characters(&mut self) -> (); async fn apple(&mut self) -> (); async fn apple_pear(&mut self) -> (); async fn apple_pear_grape(&mut self) -> (); async fn a0(&mut self) -> (); /// Comment out identifiers that collide when mapped to snake_case, for now; see /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() async fn is_xml(&mut self) -> (); async fn explicit(&mut self) -> (); async fn explicit_kebab(&mut self) -> (); /// Identifiers with the same name as keywords are quoted. async fn bool(&mut self) -> (); } pub trait GetHost< T, >: Fn(T) -> >::Host + Send + Sync + Copy + 'static { type Host: Host + Send; } impl GetHost for F where F: Fn(T) -> O + Send + Sync + Copy + 'static, O: Host + Send, { type Host = O; } pub fn add_to_linker_get_host( linker: &mut wasmtime::component::Linker, host_getter: impl for<'a> GetHost<&'a mut T>, ) -> wasmtime::Result<()> where T: Send, { let mut inst = linker.instance("foo:foo/conventions")?; inst.func_wrap_async( "kebab-case", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "kebab-case", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::kebab_case(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "foo", move | mut caller: wasmtime::StoreContextMut<'_, T>, (arg0,): (LudicrousSpeed,)| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "foo", ); wasmtime::component::__internal::Box::new( async move { tracing::event!( tracing::Level::TRACE, x = tracing::field::debug(& arg0), "call" ); let host = &mut host_getter(caller.data_mut()); let r = Host::foo(host, arg0).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "function-with-dashes", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "function-with-dashes", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::function_with_dashes(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "function-with-no-weird-characters", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "function-with-no-weird-characters", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::function_with_no_weird_characters(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "apple", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "apple", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::apple(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "apple-pear", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "apple-pear", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::apple_pear(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "apple-pear-grape", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "apple-pear-grape", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::apple_pear_grape(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "a0", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "a0", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::a0(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "is-XML", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "is-XML", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::is_xml(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "explicit", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "explicit", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::explicit(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "explicit-kebab", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "explicit-kebab", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::explicit_kebab(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; inst.func_wrap_async( "bool", move |mut caller: wasmtime::StoreContextMut<'_, T>, (): ()| { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen import", module = "conventions", function = "bool", ); wasmtime::component::__internal::Box::new( async move { tracing::event!(tracing::Level::TRACE, "call"); let host = &mut host_getter(caller.data_mut()); let r = Host::bool(host).await; tracing::event!( tracing::Level::TRACE, result = tracing::field::debug(& r), "return" ); Ok(r) } .instrument(span), ) }, )?; Ok(()) } pub fn add_to_linker( linker: &mut wasmtime::component::Linker, get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static, ) -> wasmtime::Result<()> where U: Host + Send, T: Send, { add_to_linker_get_host(linker, get) } impl<_T: Host + ?Sized + Send> Host for &mut _T { async fn kebab_case(&mut self) -> () { Host::kebab_case(*self).await } async fn foo(&mut self, x: LudicrousSpeed) -> () { Host::foo(*self, x).await } async fn function_with_dashes(&mut self) -> () { Host::function_with_dashes(*self).await } async fn function_with_no_weird_characters(&mut self) -> () { Host::function_with_no_weird_characters(*self).await } async fn apple(&mut self) -> () { Host::apple(*self).await } async fn apple_pear(&mut self) -> () { Host::apple_pear(*self).await } async fn apple_pear_grape(&mut self) -> () { Host::apple_pear_grape(*self).await } async fn a0(&mut self) -> () { Host::a0(*self).await } /// Comment out identifiers that collide when mapped to snake_case, for now; see /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() async fn is_xml(&mut self) -> () { Host::is_xml(*self).await } async fn explicit(&mut self) -> () { Host::explicit(*self).await } async fn explicit_kebab(&mut self) -> () { Host::explicit_kebab(*self).await } /// Identifiers with the same name as keywords are quoted. async fn bool(&mut self) -> () { Host::bool(*self).await } } } } } pub mod exports { pub mod foo { pub mod foo { #[allow(clippy::all)] pub mod conventions { #[allow(unused_imports)] use wasmtime::component::__internal::{anyhow, Box}; #[derive(wasmtime::component::ComponentType)] #[derive(wasmtime::component::Lift)] #[derive(wasmtime::component::Lower)] #[component(record)] #[derive(Clone, Copy)] pub struct LudicrousSpeed { #[component(name = "how-fast-are-you-going")] pub how_fast_are_you_going: u32, #[component(name = "i-am-going-extremely-slow")] pub i_am_going_extremely_slow: u64, } impl core::fmt::Debug for LudicrousSpeed { fn fmt( &self, f: &mut core::fmt::Formatter<'_>, ) -> core::fmt::Result { f.debug_struct("LudicrousSpeed") .field( "how-fast-are-you-going", &self.how_fast_are_you_going, ) .field( "i-am-going-extremely-slow", &self.i_am_going_extremely_slow, ) .finish() } } const _: () = { assert!( 16 == < LudicrousSpeed as wasmtime::component::ComponentType >::SIZE32 ); assert!( 8 == < LudicrousSpeed as wasmtime::component::ComponentType >::ALIGN32 ); }; pub struct Guest { kebab_case: wasmtime::component::Func, foo: wasmtime::component::Func, function_with_dashes: wasmtime::component::Func, function_with_no_weird_characters: wasmtime::component::Func, apple: wasmtime::component::Func, apple_pear: wasmtime::component::Func, apple_pear_grape: wasmtime::component::Func, a0: wasmtime::component::Func, is_xml: wasmtime::component::Func, explicit: wasmtime::component::Func, explicit_kebab: wasmtime::component::Func, bool: wasmtime::component::Func, } #[derive(Clone)] pub struct GuestIndices { kebab_case: wasmtime::component::ComponentExportIndex, foo: wasmtime::component::ComponentExportIndex, function_with_dashes: wasmtime::component::ComponentExportIndex, function_with_no_weird_characters: wasmtime::component::ComponentExportIndex, apple: wasmtime::component::ComponentExportIndex, apple_pear: wasmtime::component::ComponentExportIndex, apple_pear_grape: wasmtime::component::ComponentExportIndex, a0: wasmtime::component::ComponentExportIndex, is_xml: wasmtime::component::ComponentExportIndex, explicit: wasmtime::component::ComponentExportIndex, explicit_kebab: wasmtime::component::ComponentExportIndex, bool: wasmtime::component::ComponentExportIndex, } impl GuestIndices { /// Constructor for [`GuestIndices`] which takes a /// [`Component`](wasmtime::component::Component) as input and can be executed /// before instantiation. /// /// This constructor can be used to front-load string lookups to find exports /// within a component. pub fn new( component: &wasmtime::component::Component, ) -> wasmtime::Result { let (_, instance) = component .export_index(None, "foo:foo/conventions") .ok_or_else(|| { anyhow::anyhow!( "no exported instance named `foo:foo/conventions`" ) })?; Self::_new(|name| { component.export_index(Some(&instance), name).map(|p| p.1) }) } /// This constructor is similar to [`GuestIndices::new`] except that it /// performs string lookups after instantiation time. pub fn new_instance( mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let instance_export = instance .get_export(&mut store, None, "foo:foo/conventions") .ok_or_else(|| { anyhow::anyhow!( "no exported instance named `foo:foo/conventions`" ) })?; Self::_new(|name| { instance.get_export(&mut store, Some(&instance_export), name) }) } fn _new( mut lookup: impl FnMut( &str, ) -> Option, ) -> wasmtime::Result { let mut lookup = move |name| { lookup(name) .ok_or_else(|| { anyhow::anyhow!( "instance export `foo:foo/conventions` does \ not have export `{name}`" ) }) }; let _ = &mut lookup; let kebab_case = lookup("kebab-case")?; let foo = lookup("foo")?; let function_with_dashes = lookup("function-with-dashes")?; let function_with_no_weird_characters = lookup( "function-with-no-weird-characters", )?; let apple = lookup("apple")?; let apple_pear = lookup("apple-pear")?; let apple_pear_grape = lookup("apple-pear-grape")?; let a0 = lookup("a0")?; let is_xml = lookup("is-XML")?; let explicit = lookup("explicit")?; let explicit_kebab = lookup("explicit-kebab")?; let bool = lookup("bool")?; Ok(GuestIndices { kebab_case, foo, function_with_dashes, function_with_no_weird_characters, apple, apple_pear, apple_pear_grape, a0, is_xml, explicit, explicit_kebab, bool, }) } pub fn load( &self, mut store: impl wasmtime::AsContextMut, instance: &wasmtime::component::Instance, ) -> wasmtime::Result { let mut store = store.as_context_mut(); let _ = &mut store; let _instance = instance; let kebab_case = *_instance .get_typed_func::<(), ()>(&mut store, &self.kebab_case)? .func(); let foo = *_instance .get_typed_func::< (LudicrousSpeed,), (), >(&mut store, &self.foo)? .func(); let function_with_dashes = *_instance .get_typed_func::< (), (), >(&mut store, &self.function_with_dashes)? .func(); let function_with_no_weird_characters = *_instance .get_typed_func::< (), (), >(&mut store, &self.function_with_no_weird_characters)? .func(); let apple = *_instance .get_typed_func::<(), ()>(&mut store, &self.apple)? .func(); let apple_pear = *_instance .get_typed_func::<(), ()>(&mut store, &self.apple_pear)? .func(); let apple_pear_grape = *_instance .get_typed_func::< (), (), >(&mut store, &self.apple_pear_grape)? .func(); let a0 = *_instance .get_typed_func::<(), ()>(&mut store, &self.a0)? .func(); let is_xml = *_instance .get_typed_func::<(), ()>(&mut store, &self.is_xml)? .func(); let explicit = *_instance .get_typed_func::<(), ()>(&mut store, &self.explicit)? .func(); let explicit_kebab = *_instance .get_typed_func::<(), ()>(&mut store, &self.explicit_kebab)? .func(); let bool = *_instance .get_typed_func::<(), ()>(&mut store, &self.bool)? .func(); Ok(Guest { kebab_case, foo, function_with_dashes, function_with_no_weird_characters, apple, apple_pear, apple_pear_grape, a0, is_xml, explicit, explicit_kebab, bool, }) } } impl Guest { pub async fn call_kebab_case( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "kebab-case", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.kebab_case) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_foo( &self, mut store: S, arg0: LudicrousSpeed, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "foo", ); let callee = unsafe { wasmtime::component::TypedFunc::< (LudicrousSpeed,), (), >::new_unchecked(self.foo) }; let () = callee .call_async(store.as_context_mut(), (arg0,)) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_function_with_dashes( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "function-with-dashes", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.function_with_dashes) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_function_with_no_weird_characters< S: wasmtime::AsContextMut, >(&self, mut store: S) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "function-with-no-weird-characters", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.function_with_no_weird_characters) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_apple( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "apple", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.apple) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_apple_pear( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "apple-pear", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.apple_pear) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_apple_pear_grape( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "apple-pear-grape", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.apple_pear_grape) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_a0( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "a0", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.a0) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } /// Comment out identifiers that collide when mapped to snake_case, for now; see /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() pub async fn call_is_xml( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "is-XML", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.is_xml) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_explicit( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "explicit", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.explicit) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } pub async fn call_explicit_kebab( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "explicit-kebab", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.explicit_kebab) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } /// Identifiers with the same name as keywords are quoted. pub async fn call_bool( &self, mut store: S, ) -> wasmtime::Result<()> where ::Data: Send, { use tracing::Instrument; let span = tracing::span!( tracing::Level::TRACE, "wit-bindgen export", module = "foo:foo/conventions", function = "bool", ); let callee = unsafe { wasmtime::component::TypedFunc::< (), (), >::new_unchecked(self.bool) }; let () = callee .call_async(store.as_context_mut(), ()) .instrument(span.clone()) .await?; callee .post_return_async(store.as_context_mut()) .instrument(span) .await?; Ok(()) } } } } } }