xes 0.1.0

Support for reading and writing eXtensible Event Stream (XES) format.
Documentation
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>,
}