Checkpoint

This commit is contained in:
2026-05-13 20:41:15 +01:00
parent 10dee971b9
commit b3f251e4cc
4 changed files with 106 additions and 9 deletions
+12
View File
@@ -12,3 +12,15 @@ pub struct Prefs {
pub screen_width: u32,
pub screen_height: u32,
}
pub struct DisplayEntry<'a> {
pub route: &'a String,
pub destination: &'a String,
pub due_in: i32,
}
pub struct DisplayData<'a> {
pub lines: Vec<DisplayEntry<'a>>,
pub status: Option<String>
}