Rc
#1
Labels
domain: Rust
Involves Rust code.
good first issue
Good for newcomers
Hacktoberfest
A good-for-Hacktoberfest issue. This label is only maintained in October.
priority: someday
If you need this, please let me know!
state: approved
Approved to proceed.
type: feature
Brand new functionality, features, pages, workflows, endpoints, etc.
work: clear
A known solution is (to be) implemented.
Is your feature request related to a problem? Please describe.
The current implementation is generic enough to support
!Sync
reference-counting for all consumers, too.Describe the solution you'd like
Adapt
sync::Arc
into anrc::Rc
struct.The API should be extremely similar, but decrements and acquires should be relaxed.
Describe alternatives you've considered
None.
Additional context
There are opportunities for fallible (
TryFrom
) conversions between these types andBox
.Remember to
.acquire()
when moving away from eitherArc
orRc
!The text was updated successfully, but these errors were encountered: