Reputation: 24547
How does one create a std::ffi::CString
from a String
in Rust?
Assume the String
is already stored in a variable that can be moved if necessary, NOT a literal like it is in many of the examples for constructing a CString
.
I have studied the docs for both CString
:
https://doc.rust-lang.org/std/ffi/struct.CString.html
and String
:
https://doc.rust-lang.org/std/string/struct.String.html
and I still don't see the path. You must have to go through one of the many pointer types; Into
and From
aren't implemented for these types, so .into()
doesn't work.
Upvotes: 8
Views: 7141