1 2 3 4 5 6 7 8 9
use chrono::{DateTime, Utc}; #[derive(Debug)] pub struct Repository { pub name_with_owner: String, pub name: String, pub url: String, pub pushed_at: DateTime<Utc>, }