<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/library/std/src/io/error.rs, branch 1.69.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.69.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.69.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-02-08T11:35:27+00:00</updated>
<entry>
<title>std: add tracking issue for `RawOsError`</title>
<updated>2023-02-08T11:35:27+00:00</updated>
<author>
<name>joboet</name>
<email>jonasboettiger@icloud.com</email>
</author>
<published>2023-02-08T11:35:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6a5331146cc77b47ba431a3acf546bda15c9057c'/>
<id>urn:sha1:6a5331146cc77b47ba431a3acf546bda15c9057c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: add type alias for raw OS errors</title>
<updated>2023-01-31T16:23:35+00:00</updated>
<author>
<name>joboet</name>
<email>jonasboettiger@icloud.com</email>
</author>
<published>2023-01-31T16:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=42cc28ac8b7de426b4ae615242acd0be1bfa9a58'/>
<id>urn:sha1:42cc28ac8b7de426b4ae615242acd0be1bfa9a58</id>
<content type='text'>
Implement rust-lang/libs-team#173.
</content>
</entry>
<entry>
<title>Rollup merge of #103067 - Nilstrieb:tidy-likes-the-alphabet, r=jackh726</title>
<updated>2022-10-14T21:43:46+00:00</updated>
<author>
<name>Matthias Krüger</name>
<email>matthias.krueger@famsik.de</email>
</author>
<published>2022-10-14T21:43:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a96f1a8a1eef38f024d6fcff932f55a2a760a395'/>
<id>urn:sha1:a96f1a8a1eef38f024d6fcff932f55a2a760a395</id>
<content type='text'>
More alphabetical sorting

Sort and enforce a few more things. The biggest change here is sorting all target features.
</content>
</entry>
<entry>
<title>Add some tidy-alphabetical</title>
<updated>2022-10-14T19:18:03+00:00</updated>
<author>
<name>nils</name>
<email>48135649+Nilstrieb@users.noreply.github.com</email>
</author>
<published>2022-10-14T19:18:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3c0062641d02940a66bc74b182aa924d141060c1'/>
<id>urn:sha1:3c0062641d02940a66bc74b182aa924d141060c1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Tweak grammar</title>
<updated>2022-10-14T11:17:07+00:00</updated>
<author>
<name>Josh Triplett</name>
<email>josh@joshtriplett.org</email>
</author>
<published>2022-10-14T11:17:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f95e8532222479c417fdf9fffc6ce1ab8cda3413'/>
<id>urn:sha1:f95e8532222479c417fdf9fffc6ce1ab8cda3413</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Improved documentation for `std::io::Error`</title>
<updated>2022-10-07T12:42:05+00:00</updated>
<author>
<name>StackOverflowExcept1on</name>
<email>109800286+StackOverflowExcept1on@users.noreply.github.com</email>
</author>
<published>2022-10-07T12:42:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4cf30c0022a434718799b66cdf8911ad8030d0e1'/>
<id>urn:sha1:4cf30c0022a434718799b66cdf8911ad8030d0e1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove cfg(bootstrap)</title>
<updated>2022-09-26T08:14:45+00:00</updated>
<author>
<name>Pietro Albini</name>
<email>pietro.albini@ferrous-systems.com</email>
</author>
<published>2022-09-20T13:41:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3975d55d9888392cd738708b914442de9ac2bff5'/>
<id>urn:sha1:3975d55d9888392cd738708b914442de9ac2bff5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rollup merge of #100296 - BlackHoleFox:os-error-aliases, r=thomcc</title>
<updated>2022-08-28T07:35:14+00:00</updated>
<author>
<name>Matthias Krüger</name>
<email>matthias.krueger@famsik.de</email>
</author>
<published>2022-08-28T07:35:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=58174e3f7cdbab1fedcd268465a01b891e9e62e2'/>
<id>urn:sha1:58174e3f7cdbab1fedcd268465a01b891e9e62e2</id>
<content type='text'>
Add standard C error function aliases to last_os_error

This aids the discoverability of `io::Error::last_os_error()` by linking to commonly used error number functions from C/C++.

I've seen a few people not realize this exists, so hopefully this helps draw attention to the API to encourage using it over integer error codes.
</content>
</entry>
<entry>
<title>Move error trait into core</title>
<updated>2022-08-22T20:28:25+00:00</updated>
<author>
<name>Jane Losare-Lusby</name>
<email>jlusby@yaah.dev</email>
</author>
<published>2022-07-29T18:54:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bf7611d55ee6e24647aefc4d1c82b1dba0164536'/>
<id>urn:sha1:bf7611d55ee6e24647aefc4d1c82b1dba0164536</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add standard C error function aliases</title>
<updated>2022-08-09T00:56:21+00:00</updated>
<author>
<name>BlackHoleFox</name>
<email>blackholefoxdev@gmail.com</email>
</author>
<published>2022-08-09T00:49:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=08c97323dee8b8558c8e1dc770885f0095360d32'/>
<id>urn:sha1:08c97323dee8b8558c8e1dc770885f0095360d32</id>
<content type='text'>
Aids the discoverability of `io::Error::last_os_error()` by linking to
commonly used error number functions from C/C++.
</content>
</entry>
</feed>
