pub trait OsStrExt {
fn from_bytes(slice: &[u8]) -> &Self;
fn as_bytes(&self) -> &[u8];
}
Platform-specific extensions to OsStr.
fn from_bytes(slice: &[u8]) -> &Selfimpl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized,
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized,
type Item = <I as Iterator>::Item;
impl<'_, R: Read + ?Sized> Read for &'_ mut R
impl<'_, W: Write + ?Sized> Write for &'_ mut W
Creates an OsStr from a byte slice.
See the module docmentation for an example.
fn as_bytes(&self) -> &[u8]Gets the underlying byte view of the OsStr slice.
See the module docmentation for an example.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/ffi/trait.OsStrExt.html