Currently, main types like Rc, AtomicRc do not implement several Traits essential for everyday programming, such as Debug, Pointer, and others. By referencing std::rc::Rc and implementing these useful Traits, the usability could be significantly improved. Ultimately, it would be ideal to make it close to a drop-in replacement for std::rc::Rc.
I’m willing to work on it myself, but due to time constraints, it might take quite a while. I don’t mind if you fix it first.
Currently, main types like
Rc
,AtomicRc
do not implement several Traits essential for everyday programming, such asDebug
,Pointer
, and others. By referencingstd::rc::Rc
and implementing these useful Traits, the usability could be significantly improved. Ultimately, it would be ideal to make it close to a drop-in replacement forstd::rc::Rc
.I’m willing to work on it myself, but due to time constraints, it might take quite a while. I don’t mind if you fix it first.
References