I am converting a code base from using `Rc<String>` to `Arc<String>`, and I notice that ToTokens is only defined for `Rc<String>`. Would there be any issues or complexities with defining ToTokens for `Arc<String>`?
I am converting a code base from using
Rc<String>toArc<String>, and I notice that ToTokens is only defined forRc<String>.Would there be any issues or complexities with defining ToTokens for
Arc<String>?