-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 6 pull requests #42780
Rollup of 6 pull requests #42780
Conversation
add `FromStr` Impl for `char` fixes rust-lang#24939. is it possible to use pub(restricted) instead of using a stability attribute for the internal error representation? is it needed at all?
Convert `Into<Box<[T]>> for Vec<T>` into `From<Vec<T>> for Box<[T]>` As the `collections` crate has been merged into `alloc` in rust-lang#42648 this impl is now possible. This is the final part of rust-lang#42129 missing from rust-lang#42227.
resolve: fix perf bug Fixes rust-lang#42544. r? @nrc
…QuietMisdreavus Additions/improvements for doc examples. None
Show type name for unused_must_use lint Fix rust-lang#42688.
Update libc to 0.2.24 Fixes rust-lang#42427.
@bors r+ p=10 |
📌 Commit 58425ef has been approved by |
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @alexcrichton (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
☀️ Test successful - status-appveyor, status-travis |
FromStr
Impl forchar
#42271, ConvertInto<Box<[T]>> for Vec<T>
intoFrom<Vec<T>> for Box<[T]>
#42717, resolve: fix perf bug #42728, Additions/improvements for doc examples. #42749, Show type name for unused_must_use lint #42756, Update libc to 0.2.24 #42772