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
The TimeDelta type was previously named Duration (and is still available as a type alias with that name). A notable difference with the similar core::time::Duration is that it is a signed value instead of unsigned.
In chrono (currently, 0.4.35)
Duration
is just a type alias forTimeDelta
(see chronotope/chrono#1137 (comment))I think it'd be better if I use the actual struct name instead of its alias (also to differentiate it from std's
Duration
)The text was updated successfully, but these errors were encountered: