1 2 3 4 5 6 7
use std::collections::BTreeMap; #[derive(Debug, PartialEq, Clone)] pub struct ReportDefinition { pub additional_data: BTreeMap<String, String>, pub template: String, }