Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between tokio::spawn and tokio::task::spawn in Rust?

I am making a web server capable of async operation using tokio.

I created a task via tokio::spawn, and I saw tokio::task::spawn working as well.

What is the difference between tokio::sapwn and tokio::task::spawn?

like image 841
yjlee Avatar asked Jan 24 '26 08:01

yjlee


1 Answers

Nothing. tokio::spawn() is just a re-export of tokio::task::spawn() for ease of use.

like image 147
Chayim Friedman Avatar answered Jan 26 '26 23:01

Chayim Friedman



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!