-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Stabilize Duration::{as_millis, as_micros, as_nanos} #57124
Conversation
r? @TimNN (rust_highfive has picked a reviewer for you, use r? to override) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good; I'll r+ when tree-close is over.
@bors r+ |
📌 Commit fc32fbaac44b9f128eadc6716fe9f319d61a2c41 has been approved by |
🌲 The tree is currently closed for pull requests below priority 500, this pull request will be tested once the tree is reopened |
☔ The latest upstream changes (presumably #57108) made this pull request unmergeable. Please resolve the merge conflicts. |
fc32fba
to
1e82618
Compare
Fixed the merge conflict. |
@bors r+ |
📌 Commit 1e82618 has been approved by |
Stabilize Duration::{as_millis, as_micros, as_nanos} Fixes #50202. 🎉 This is the stabilization PR for the `duration_as_u128` feature. I have never made one of these before so please let me know if I missed a step. I followed the [guide in the Rust Forge](https://forge.rust-lang.org/stabilization-guide.html) and also found some old stabilization PRs ([1](#57002), [2](#56207)) for similar features to base my work on.
☀️ Test successful - status-appveyor, status-travis |
🎉 |
Fixes #50202. 🎉
This is the stabilization PR for the
duration_as_u128
feature. I have never made one of these before so please let me know if I missed a step. I followed the guide in the Rust Forge and also found some old stabilization PRs (1, 2) for similar features to base my work on.