1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[derive(Debug, Deserialize)]
pub struct RouteCSV {
    pub route_id: String,
    pub agency_id: Option<String>,
    pub route_short_name: String,
    pub route_long_name: String,
    pub route_desc: Option<String>,
    pub route_type: i32,
    pub route_url: Option<String>,
    pub route_color: Option<String>,
    pub route_text_color: Option<String>,
    pub route_sort_order: Option<i32>,
}