How to create a vector of days starting with today and going back the last 30 days in Rust

1 Answer

0 votes
use chrono::{Local, Datelike};

fn main() {
    // Get today's date
    let today = Local::now().date_naive();

    // Create a vector to store the days
    let mut days = Vec::new();

    // Populate the vector with the last 30 days
    for i in 0..30 {
        let past_date = today - chrono::Duration::days(i);
        days.push(past_date.day());
    }

    for day in &days {
        println!("{}", day);
    }
}




/*
run:

11
10
9
8
7
6
5
4
3
2
1
31
30
29
28
27
26
25
24
23
22
21
20
19
18
17
16
15
14
13

*/

 



answered Apr 11, 2025 by avibootz
...