1 2 3 4 5 6 7
use crate::ontology::Attribute; use std::collections::HashMap; #[derive(Debug)] pub struct Event { pub attributes: HashMap<String, Attribute>, }