ebi_objects 0.3.182

Objects for Ebi - a stochastic process mining utility
Documentation
1
2
3
4
5
6
7
use crate::AttributeKey;

pub trait HasAttributeKey {
    fn attribute_key(&self) -> &AttributeKey;

    fn attribute_key_mut(&mut self) -> &mut AttributeKey;
}