<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/library/core/src/convert/mod.rs, branch stable</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=stable</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=stable'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-07-21T09:49:45+00:00</updated>
<entry>
<title>Constify Try, From, TryFrom</title>
<updated>2025-07-21T09:49:45+00:00</updated>
<author>
<name>Evgenii Zheltonozhskii</name>
<email>zheltonozhskiy@gmail.com</email>
</author>
<published>2025-07-21T09:49:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3c76e3d0026ea9904358b1614bbd9c4f8b7cedf5'/>
<id>urn:sha1:3c76e3d0026ea9904358b1614bbd9c4f8b7cedf5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>constify `From` and `Into`</title>
<updated>2025-07-11T08:30:47+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>github333195615777966@oli-obk.de</email>
</author>
<published>2025-07-11T08:17:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e681d1a9731897951ea4c2d68c7d8f4a322b9904'/>
<id>urn:sha1:e681d1a9731897951ea4c2d68c7d8f4a322b9904</id>
<content type='text'>
</content>
</entry>
<entry>
<title>library/compiler: add `PointeeSized` bounds</title>
<updated>2025-06-16T23:04:33+00:00</updated>
<author>
<name>David Wood</name>
<email>david.wood2@arm.com</email>
</author>
<published>2025-02-10T14:18:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=884d0e031a046af894b43180032c1803bb6d0834'/>
<id>urn:sha1:884d0e031a046af894b43180032c1803bb6d0834</id>
<content type='text'>
As core uses an extern type (`ptr::VTable`), the default `?Sized` to
`MetaSized` migration isn't sufficient, and some code that previously
accepted `VTable` needs relaxed to continue to accept extern types.

Similarly, the compiler uses many extern types in `rustc_codegen_llvm`
and in the `rustc_middle::ty::List` implementation (`OpaqueListContents`)
some bounds must be relaxed to continue to accept these types.

Unfortunately, due to the current inability to relax `Deref::Target`,
some of the bounds in the standard library are forced to be stricter than
they ideally would be.
</content>
</entry>
<entry>
<title>Rollup merge of #141130 - mejrs:use_self, r=compiler-errors</title>
<updated>2025-05-22T14:02:30+00:00</updated>
<author>
<name>Matthias Krüger</name>
<email>476013+matthiaskrgr@users.noreply.github.com</email>
</author>
<published>2025-05-22T14:02:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c385715806adf83afc6b5d0f7e76046885769afd'/>
<id>urn:sha1:c385715806adf83afc6b5d0f7e76046885769afd</id>
<content type='text'>
rustc_on_unimplemented cleanups

Addresses some of the fixmes from https://github.com/rust-lang/rust/pull/139091 and https://github.com/rust-lang/rust/pull/140307.

- switch from `_Self` to `Self` in library
- properly validate that arguments in the `on` filter and the format strings are actually valid

See https://github.com/rust-lang/rustc-dev-guide/pull/2357 for the relevant documentation.
</content>
</entry>
<entry>
<title>Switch library rustc_unimplemented to use `Self` and `This`</title>
<updated>2025-05-17T10:50:37+00:00</updated>
<author>
<name>mejrs</name>
<email>59372212+mejrs@users.noreply.github.com</email>
</author>
<published>2025-05-17T10:50:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c9b6ccc11ce82c753702716f57f786acf322e64f'/>
<id>urn:sha1:c9b6ccc11ce82c753702716f57f786acf322e64f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Explain prefer `TryInto` over `TryFrom` when specifying traits bounds on generic function</title>
<updated>2025-05-08T10:12:05+00:00</updated>
<author>
<name>xizheyin</name>
<email>xizheyin@smail.nju.edu.cn</email>
</author>
<published>2025-05-08T10:12:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4101d90818b7e5574d5366e24c995980fa2de866'/>
<id>urn:sha1:4101d90818b7e5574d5366e24c995980fa2de866</id>
<content type='text'>
Signed-off-by: xizheyin &lt;xizheyin@smail.nju.edu.cn&gt;
</content>
</entry>
<entry>
<title>std: Make consistence between `From` and `Into`</title>
<updated>2025-05-08T10:09:29+00:00</updated>
<author>
<name>xizheyin</name>
<email>xizheyin@smail.nju.edu.cn</email>
</author>
<published>2025-05-08T10:09:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b6c2a429efd85cbfa5f592c66faac6955729c6ea'/>
<id>urn:sha1:b6c2a429efd85cbfa5f592c66faac6955729c6ea</id>
<content type='text'>
Signed-off-by: xizheyin &lt;xizheyin@smail.nju.edu.cn&gt;
</content>
</entry>
<entry>
<title>Rollup merge of #138082 - thaliaarchi:slice-cfg-not-test, r=thomcc</title>
<updated>2025-03-16T01:40:05+00:00</updated>
<author>
<name>许杰友 Jieyou Xu (Joe)</name>
<email>39484203+jieyouxu@users.noreply.github.com</email>
</author>
<published>2025-03-16T01:40:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e0846806dbfaa8d838832f48771a8a709f35ee0a'/>
<id>urn:sha1:e0846806dbfaa8d838832f48771a8a709f35ee0a</id>
<content type='text'>
Remove `#[cfg(not(test))]` gates in `core`

These gates are unnecessary now that unit tests for `core` are in a separate package, `coretests`, instead of in the same files as the source code. They previously prevented the two `core` versions from conflicting with each other.
</content>
</entry>
<entry>
<title>Remove #[cfg(not(test))] gates in core</title>
<updated>2025-03-06T21:21:59+00:00</updated>
<author>
<name>Thalia Archibald</name>
<email>thalia@archibald.dev</email>
</author>
<published>2025-03-06T02:14:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=638b226a6ab5c5c784955068f57ae249e0ed0f92'/>
<id>urn:sha1:638b226a6ab5c5c784955068f57ae249e0ed0f92</id>
<content type='text'>
These gates are unnecessary now that unit tests for `core` are in a
separate package, `coretests`, instead of in the same files as the
source code. They previously prevented the two `core` versions from
conflicting with each other.
</content>
</entry>
<entry>
<title>Ensure that negative auto impls are always applicable</title>
<updated>2025-03-04T17:45:18+00:00</updated>
<author>
<name>Michael Goulet</name>
<email>michael@errs.io</email>
</author>
<published>2025-02-28T01:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3d62b279ddc2095b94aa5921540b27f3003365ff'/>
<id>urn:sha1:3d62b279ddc2095b94aa5921540b27f3003365ff</id>
<content type='text'>
</content>
</entry>
</feed>
