0 votes
in Rust by
What string type should you use with Rust?

1 Answer

0 votes
by

By far, quite a number of string types are available to be used with Rust, choosing one from these, CStr, str, Slice, CString, OsString, OsStr and Owned type, would be more preferable.

...