Update documentation

This commit is contained in:
RunasSudo 2025-05-25 01:20:37 +10:00
parent 3913558410
commit 33252739d9
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A

View File

@ -194,6 +194,7 @@ pub trait GenericReportingProduct: Debug + ReportingProduct {}
/// Map from [ReportingProductId] to [ReportingProduct] /// Map from [ReportingProductId] to [ReportingProduct]
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct ReportingProducts { pub struct ReportingProducts {
// This needs to be an IndexMap not HashMap, because sometimes we query which product is more up to date
map: IndexMap<ReportingProductId, Box<dyn ReportingProduct>>, map: IndexMap<ReportingProductId, Box<dyn ReportingProduct>>,
} }