pub fn concat<S1, S2>(path: S1, suffix: S2) -> OsStringwhere S1: AsRef<OsStr>, S2: AsRef<OsStr>,
Concatenate two OsStrings.
OsStr
Takes two arguments that can be used as a reference to OsStr, and returns a new OsString instance by concatenating them.
OsString