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