We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#[async_recursion::async_recursion] async fn meow(n : Option<&str>) -> () { meow(n).await }
expands to (cleaned):
#[must_use] fn meow( n: Option<&str>, ) -> Pin<Box<dyn Future<Output = ()> + Send>> { Box::pin(async move { meow(n).await }) }