Logo

Programming-Idioms

History of Idiom 61 > diff from v35 to v36

Edit summary for version 36 by freecoder:
New Rust implementation by user [freecoder]

Version 35

2018-07-24, 13:44:08

Version 36

2018-12-18, 15:41:17

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Imports
use std::time::SystemTime;
Code
let d = SystemTime::now();
Doc URL
https://doc.rust-lang.org/std/time/struct.SystemTime.html
Demo URL
https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=3c13aedff2727f003f9d3ef072b4d136