1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 01:55:31 +02:00

Improve language around ownership of OsString (#602)

Based on discussion in #598.
This commit is contained in:
Martin Geisler 2023-04-28 01:00:07 -07:00 committed by GitHub
parent 251782aac3
commit fc68829e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,11 +24,11 @@ You will convert between all these types:
- `&str` to `CString`: you need to allocate space for a trailing `\0` character,
- `CString` to `*const i8`: you need a pointer to call C functions,
- `*const i8` to `&CStr`: you need something which can find the trailing `\0` character,
- `&CStr` to `&[u8]`: you will ultimately return a slice of bytes,
- `&[u8]` to `&OsStr`: you can create an `OsString` from `&[u8]`. Use
- `&CStr` to `&[u8]`: a slice of bytes is the universal interface for "some unknow data",
- `&[u8]` to `&OsStr`: `&OsStr` is a step towards `OsString`, use
[`OsStrExt`](https://doc.rust-lang.org/std/os/unix/ffi/trait.OsStrExt.html)
for this.
- `&OsStr` to `OsString`: you need to take ownership of the data before you call
to create it,
- `&OsStr` to `OsString`: you need to clone the data in `&OsStr` to be able to return it and call
`readdir` again.
The [Nomicon] also has a very useful chapter about FFI.