(
&mut self,
)
| 215 | } |
| 216 | impl<_T: Host + ?Sized + Send> Host for &mut _T { |
| 217 | fn f( |
| 218 | &mut self, |
| 219 | ) -> impl ::core::future::Future<Output = LiveType> + Send { |
| 220 | async move { Host::f(*self).await } |
| 221 | } |
| 222 | } |
| 223 | pub fn add_to_linker_instance<T, D>( |
| 224 | inst: &mut wasmtime::component::LinkerInstance<'_, T>, |