rustHow to get current date in Rust
Getting the current date in Rust is easy with the chrono crate.
use chrono::{Local, DateTime};
let now: DateTime<Local> = Local::now();
println!("{}", now);
The code above will print the current date and time in the local timezone.
Code explanation
use chrono::{Local, DateTime};- imports theLocalandDateTimetypes from thechronocratelet now: DateTime<Local> = Local::now();- creates aDateTimeobject with the current date and time in the local timezoneprintln!("{}", now);- prints theDateTimeobject
Helpful links
Related
- Using now to get current time in Rust
- How to get time from milliseconds in Rust
- How to sleep in Rust
- How to get execution time in Rust
- How to add second to time in Rust
- What type to use for datetime in Rust
- How to format datetime in Rust
- How to format date in Rust
- How to convert timestamp to datetime in Rust
More of Rust
- How to convert a Rust slice of u8 to u32?
- Regex example to match multiline string in Rust?
- How to use regex captures in Rust?
- How to use regex to match a double quote in Rust?
- How to perform matrix operations in Rust?
- How to print a Rust HashMap?
- How to use binary regex in Rust?
- How to extend a Rust HashMap?
- How to match the end of a line in a Rust regex?
- How to use regex to match a group in Rust?
See more codes...