|
|
|
|
|
by steveklabnik
311 days ago
|
|
Rust has one string type in the language, and three more in the standard library. This boils down to the intersection of “owned vs borrowed” and “Rust native strings vs C native strings,” and you only need the C variants when doing FFI. |
|
As for only needing them when you need them, how could it be otherwise? :-)