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 theLocal
andDateTime
types from thechrono
cratelet now: DateTime<Local> = Local::now();
- creates aDateTime
object with the current date and time in the local timezoneprintln!("{}", now);
- prints theDateTime
object
Helpful links
Related
- How to get time from milliseconds in Rust
- What type to use for datetime in Rust
- How to sleep in Rust
- How to get execution time in Rust
- How to convert datetime to timestamp in Rust
- Using now to get current time in Rust
- How to format time in Rust
- How to add second to time in Rust
- How to add day to date in Rust
More of Rust
- How to replace a capture group using Rust regex?
- How to use regex with bytes in Rust?
- How to get a capture group using Rust regex?
- How to use regex to match a double quote in Rust?
- How to declare a matrix in Rust?
- How to add matrices in Rust?
- How to calculate the inverse of a matrix in Rust?
- How to replace strings using Rust regex?
- How to get an entry from a HashSet in Rust?
- How to use regex lookahead in Rust?
See more codes...