| name: {
|
| let cstr = unsafe { &CStr::from_ptr(info.name.as_slice().as_ptr()) };
|
| let osstr = <OsStr as OsStrExt>::from_bytes(cstr.to_bytes());
|
| PathBuf::from(osstr)
|
| },
|
| name: {
|
| let cstr = unsafe { &CStr::from_ptr(info.name.as_slice().as_ptr()) };
|
| let osstr = <OsStr as OsStrExt>::from_bytes(cstr.to_bytes());
|
| PathBuf::from(osstr)
|
| },
|