pub struct Ocel2Event {
pub id: String,
pub event_type: String,
pub time: String,
pub attributes: HashMap<String, Ocel2Value>,
pub relationships: Vec<Ocel2EventObjectRelationship>,
}Expand description
OCEL 2.0 event instance.
Fields§
§id: StringEvent identifier
event_type: StringEvent type (activity)
time: StringEvent timestamp
attributes: HashMap<String, Ocel2Value>Event attribute values
relationships: Vec<Ocel2EventObjectRelationship>Related objects with qualifiers
Trait Implementations§
Source§impl Debug for Ocel2Event
impl Debug for Ocel2Event
Source§impl<'de> Deserialize<'de> for Ocel2Event
impl<'de> Deserialize<'de> for Ocel2Event
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Ocel2Event
impl RefUnwindSafe for Ocel2Event
impl Send for Ocel2Event
impl Sync for Ocel2Event
impl Unpin for Ocel2Event
impl UnwindSafe for Ocel2Event
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more