Update documentation

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

View File

@ -194,6 +194,7 @@ pub trait GenericReportingProduct: Debug + ReportingProduct {}
/// Map from [ReportingProductId] to [ReportingProduct]
#[derive(Clone, Debug)]
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>>,
}