Threads in Rust
# Threads
In rust threading is cross platform, mac win linux and more.
|
|
thread spawn takes a closure with no arguments. spawn returns a join handle.
don’t use threads for waiting for stuff use async stuff instead
Search
In rust threading is cross platform, mac win linux and more.
|
|
thread spawn takes a closure with no arguments. spawn returns a join handle.
don’t use threads for waiting for stuff use async stuff instead