pub struct Ocel2Log {
pub object_types: Vec<Ocel2ObjectType>,
pub event_types: Vec<Ocel2EventType>,
pub objects: Vec<Ocel2Object>,
pub events: Vec<Ocel2Event>,
pub global_log: Option<Ocel2GlobalLog>,
}Expand description
OCEL 2.0 complete log structure.
Fields§
§object_types: Vec<Ocel2ObjectType>Object types (metamodel)
event_types: Vec<Ocel2EventType>Event types (metamodel)
objects: Vec<Ocel2Object>Object instances
events: Vec<Ocel2Event>Event instances
global_log: Option<Ocel2GlobalLog>Global log attributes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ocel2Log
impl<'de> Deserialize<'de> for Ocel2Log
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 Ocel2Log
impl RefUnwindSafe for Ocel2Log
impl Send for Ocel2Log
impl Sync for Ocel2Log
impl Unpin for Ocel2Log
impl UnwindSafe for Ocel2Log
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