Initial implementation of 'next arrivals'. Needs more work.

This commit is contained in:
2026-04-27 21:00:45 +01:00
parent c83ac39bac
commit 431f21a8b8
5 changed files with 81 additions and 20 deletions
+2 -1
View File
@@ -8,9 +8,10 @@ pub struct Preferences {
pub stop_codes: HashSet<String>,
}
#[derive(Debug)]
pub struct Arrival<'a> {
pub route: &'a Route,
pub stop: &'a Stop,
pub timepoint: &'a TimepointType,
pub departure_time: u32,
}