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
More of Rust
- How to get a capture group using Rust regex?
- How to use regex to match a double quote in Rust?
- How to use regex to match a group in Rust?
- How to match the end of a line in a Rust regex?
- How to use regex captures in Rust?
- How to perform matrix operations in Rust?
- How to replace a capture group using Rust regex?
- How to calculate the inverse of a matrix in Rust?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
See more codes...