This commit is contained in:
2025-05-29 11:43:28 +02:00
parent 999d8b92aa
commit b08cb54acd
4 changed files with 3450 additions and 2156 deletions

View File

@@ -17,4 +17,13 @@ impl Clone for Icon {
content_type: self.content_type.clone(),
}
}
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum ParseType {
Link { url: String, title: String },
Img(Icon),
Count(u32),
ResourceAdd,
ResourceLast,
Duration { duration: u64, unit: String },
}