Currently, libstd has:
impl Into<Vec<u8>> for String
impl Into<OsString> for PathBuf
And this seems inconsistent with the other collection implementations which all use From instead. It makes sense that these would be changed to From to allow use of from, and it doesn't seem like it'd be a breaking change at all.