You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, Duration::num_seconds and friends return i64 values, which means you get the number of whole seconds included in the duration. But it's often useful to get fractional values as well.
It's unclear whether the methods should simply be changed to yield f64 values, or whether we should have separate variants.