macro_rules! dtt_now { () => { ... }; }
Creates a new DateTime instance with the current date and time in UTC.
DateTime
use dtt::dtt_now; let now = dtt_now!(); println!("Current date and time: {}", now);