We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The Duration type introduced in #15934 looks like
Duration
pub struct Duration { days: i32, secs: u32, // Always < SECS_PER_DAY nanos: u32, // Always < NANOS_PR_SECOND }
Per @kballard's [comment] this could be
pub struct Duration { secs: i64, nanos: u32, // Always < NANOS_PR_SECOND }