pub fn checked_new(secs: u64, nanos: u32) -> Option<Duration>
Expand description
A pre-checked version of Duration::new
.
Note that Duration
does not offer direct construction,
and this method internally calls Duration::new
, which
might still panics. However, this method uplifts the check,
and theoretically never panics.