Hacker News new | ask | show | jobs
by firstlink 1204 days ago
If the scope is the lifetime of the program, then it hardly makes a difference. Note that rust programs exit upon return from main anyways.
1 comments

This is the point of lifetimes. Everything has a lifetime whether or not it is annotated. Sometimes the compiler doesn't know what the lifetime of an object is, particularly in relation to other objects.

If you can scope something to main() then that is a 'static lifetime and there is no need for a scoped thread for it.