Hacker News new | ask | show | jobs
by rmdashrfstar 1878 days ago
I suppose my question is what motivates the use of atomically referencing counting string slice rather than borrowing?
1 comments

You can store it independently without it being borrowed. So your structs don't need lifetimes.

I consider it a midpoint between `String` and `&str`. Most of the convenience of `String` (barring mutation) but less costly.