431 errors left

This commit is contained in:
Timo Kösters
2022-10-05 09:34:25 +02:00
committed by Nyaaori
parent bd8b616ca0
commit 8708cd3b63
32 changed files with 640 additions and 973 deletions

View File

@@ -13,7 +13,7 @@ pub trait Data {
fn get_registration(&self, id: &str) -> Result<Option<serde_yaml::Value>>;
fn iter_ids(&self) -> Result<Box<dyn Iterator<Item = Result<String>>>>;
fn iter_ids<'a>(&'a self) -> Result<Box<dyn Iterator<Item = Result<String>> + 'a>>;
fn all(&self) -> Result<Vec<(String, serde_yaml::Value)>>;
}