Home
last modified time | relevance | path

Searched refs:day_secs (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/humantime/src/
Dduration.rs310 let day_secs = mdays % 86400; in fmt() localVariable
311 let hours = day_secs / 3600; in fmt()
312 let minutes = day_secs % 3600 / 60; in fmt()
313 let seconds = day_secs % 60; in fmt()