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
Creating Duration::new(u64::MAX, u32::MAX) results in a duration of 3 seconds.
From the documentation, it's not clear what Duration::new is supposed to do on overflow, but right now it silently wraps, whereas its overloaded math operators used explicit checked math.