We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d15e9 commit 3e0efe4Copy full SHA for 3e0efe4
src/libstd/ffi/os_str.rs
@@ -1163,14 +1163,14 @@ impl AsRef<OsStr> for String {
1163
}
1164
1165
1166
-impl<A: AllocRef> FromInner<Buf<A>> for OsString<A> {
1167
- fn from_inner(buf: Buf<A>) -> OsString<A> {
1168
- Self { inner: buf }
+impl FromInner<Buf> for OsString {
+ fn from_inner(buf: Buf) -> OsString {
+ OsString { inner: buf }
1169
1170
1171
1172
-impl<A: AllocRef> IntoInner<Buf<A>> for OsString<A> {
1173
- fn into_inner(self) -> Buf<A> {
+impl IntoInner<Buf> for OsString {
+ fn into_inner(self) -> Buf {
1174
self.inner
1175
1176
0 commit comments