Borrowed reference to an OS string (see [`OsString`]). This type represents a borrowed reference to a string in the operating system's preferred representation. `&OsStr` is to [`OsString`] as &[str] is to [`String`]: the former in each pair are borrowed references; the latter are owned strings.
| 25 | /// `&OsStr` is to [`OsString`] as <code>&[str]</code> is to [`String`]: the |
| 26 | /// former in each pair are borrowed references; the latter are owned strings. |
| 27 | pub struct OsStr { |
| 28 | inner: str |
| 29 | } |
| 30 | |
| 31 | impl OsString { |
| 32 | /// Constructs a new empty `OsString`. |
nothing calls this directly
no outgoing calls
no test coverage detected