You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I love this project and I use it as wallpaper.
But I have a question about the multiple/unique branch. I feel this branch is unnecessay.
I feel Mutex should always be used inside Arc. Mutex are never used alone.
If there are any example where Mutex is needed in a single thread?
I'm new to Rust and I may confuse something.
The text was updated successfully, but these errors were encountered:
Mutex in the graph is under the multiple threads branch. I think you may be reading the graph wrong. Mutexes are indeed used outside of Arc and other structures quite a lot, but no, never in single threads - which is why it's under the multiple threads branch.
I love this project and I use it as wallpaper.
But I have a question about the multiple/unique branch. I feel this branch is unnecessay.
I feel Mutex should always be used inside Arc. Mutex are never used alone.
If there are any example where Mutex is needed in a single thread?
I'm new to Rust and I may confuse something.
The text was updated successfully, but these errors were encountered: