-
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
Tracking Issue: Duration::{as_nanos, as_micros, as_millis} #50202
Comments
I still don't understand why Duration is not allowed to be negative. It bugs me that the SystemTime difference returns a Result<Duration,Error> and returns and error if the time from is after the time to. To me, it should just return a negative Duration (Yes, the System Clock can go backwards). I find it odd that Duration does not support a negative amount. |
@gbutler69 I think it's about the way you think of You're probably thinking of a distance instead of an interval. That's not necessarily a bad thing, but it's different from what the type is today, and it will never change due to compatibility concerns. |
Here is what I take issue with: let t1 = std:time:SystemTime.now();
// ....long running computation happening...
// System Clock Time changed back 5 hours (because it was wrong to begin with) outside the program
// ....long running computation completed...
let t2 = std:time:SystemTime.now();
let clock_time_between_events = t2.duration_since( t1 ); // returns an error instead of negative duration, so I must do...
let ( clock_time_between_events, neg_duration ) = match ( clock_time_between_events ) {
Some(duration) => ( duration, false )
_ => ( t1.duration_since( t2 ).unwrap(), true )
} And....DING! DING! DING! ....you know what, now that I've typed out that code, I can't think of any justifiable reason I would actually want that, so, once again, the thoughtfulness of Rust shows itself. You and the designers of Duration were correct. Negative Duration doesn't make sense (even though it feels like it should). |
You can use https://doc.rust-lang.org/std/time/struct.Instant.html if you want to measure a duration. |
Yes, I'm aware. I guess I think there should be another thing called ClockTimeDifference (that can be neg/pos) and there should be methods on SystemTime that don't return Result<Duration,Error>, but, instead return ClockTimeDifference. It could be as simple as: struct ClockTimeDifference {
duration : Duration,
is_negative : bool
} |
It can, but the return type of |
@gbutler69 @lnicola This is the tracking issue for a feature that adds several specific methods to Duration, not a place to debate general concerns about the Duration type. Your discussion is probably better suited for the internals.rust-lang.org site. |
Why can't as_millis return an i64? |
@NatTuck large durations won't fit into that type. |
Pardon my ignorance, but why is this unstable? For my usecase, I probably don't need more than a I know (I think?) I can use |
The stability of u128 was the blocker previously, but that's now no longer a problem. @rfcbot fcp merge |
Team member @sfackler has proposed to merge this. The next step is review by the rest of the tagged teams: No concerns currently listed. Once a majority of reviewers approve (and none object), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
I couldn’t find all the details in this issue, grepping through the code shows that this tracking issue is for: pub fn as_millis(&self) -> u128 {…}
pub fn as_micros(&self) -> u128 {…}
pub fn as_nanos(&self) -> u128 {…} |
This may be a stupid question, but is |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
@lnicola Yep, it should be available on all platforms. |
The final comment period, with a disposition to merge, as per the review above, is now complete. |
Now that final comment period has ended, can these methods be stabilized? |
Yes, the next step is a stabilization PR. |
Awesome! I've made a PR for stabilization here: #57124 Please let me know if it needs any adjustments. I can't wait for this to land! 🎉 |
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.
Duration has historically lacked a way to get the actual number of nanoseconds it contained as a normal Rust type because u64 was of insufficient range, and f64 of insufficient precision. The u128 type solves both issues, so I propose adding an as_nanos function to expose the capability.
CC: #50167
The text was updated successfully, but these errors were encountered: