|
|
|
|
|
by aratakareigen
2297 days ago
|
|
Rust types have markers (Send, Sync) that tell the compiler whether they can be moved across threads, and whether they can be simultaneously accessed across threads. These markers are irrelevant in a single-threaded scenario. |
|