We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There exists a method to lock a Mutex in an Arc using lock_arc, so it would make sense for there to be read_arc/write_arc methods for the RwLock.
Mutex
Arc
lock_arc
read_arc
write_arc
RwLock
Related: async-rs/async-std#991
The text was updated successfully, but these errors were encountered:
+1 !
Sorry, something went wrong.
feat: Add reference-counted versions of RwLock guards (#47)
936e046
Adds reference-counted versions of `RwLock` guards to #33.
Successfully merging a pull request may close this issue.
There exists a method to lock a
Mutex
in anArc
usinglock_arc
, so it would make sense for there to beread_arc
/write_arc
methods for theRwLock
.Related: async-rs/async-std#991
The text was updated successfully, but these errors were encountered: