pub const MINUTE: Duration;
A minute. Useful for rounding Duration.
Duration
use roundable::{MINUTE, Roundable}; use std::time::Duration; assert!(MINUTE == Duration::from_secs(30).round_to(MINUTE));