pub fn from_c(string: *const i8) -> Option<String>
Converts a *const i8 into a String, if possible
*const i8
String
Returns Some if the pointer isn’t null and points to a valid, non-empty string and returns None otherwise.
Some
None