diff options
Diffstat (limited to 'users/Profpatsch')
-rw-r--r-- | users/Profpatsch/blog/notes/rust-string-conversions.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/Profpatsch/blog/notes/rust-string-conversions.md b/users/Profpatsch/blog/notes/rust-string-conversions.md index ac8c8f892572..99071ef9d370 100644 --- a/users/Profpatsch/blog/notes/rust-string-conversions.md +++ b/users/Profpatsch/blog/notes/rust-string-conversions.md @@ -14,6 +14,7 @@ From To Use Comment &str -> String String::from(st) &str -> &[u8] st.as_bytes() &str -> Vec<u8> st.as_bytes().to_owned() via &[u8] +&str -> &OsStr OsStr::new(st) String -> &str &s alt. s.as_str() String -> &[u8] s.as_bytes() |