Replies: 1 comment 1 reply
-
What we support is Example here: https://github.com/rune-rs/rune/blob/main/examples/examples/tokio_spawn.rs. This also imposes limits on what can go into a future, and you have to clone the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
my main entry point has this weird requirement where I need:
I think the crux of the issue is here:
I can fix it with using
tokio::LocalSet
and#[async_recursion(?Send)]
, but just out of curiosity, I wanted to ask if there's a way to make this work :D I mean, seeing thoseArc
s all over the place kinda leads me to think it would be.Beta Was this translation helpful? Give feedback.
All reactions