pub struct XESOuterLogData {
pub extensions: Vec<EventLogExtension>,
pub classifiers: Vec<EventLogClassifier>,
pub log_attributes: Attributes,
pub global_trace_attrs: Attributes,
pub global_event_attrs: Attributes,
}Expand description
(Global) log data parsed during streaming
According to the state machine flow in XES standard (https://xes-standard.org/_media/xes/xesstandarddefinition-2.0.pdf#page=11) those must occur before the first trace
Thus, for XES-compliant logs it is guaranteed that this data is already complete once the first trace is parsed.
Fields§
§extensions: Vec<EventLogExtension>XES Extensions of event log
classifiers: Vec<EventLogClassifier>Event Classifiers of event log
log_attributes: AttributesLog-level attributes of event log
global_trace_attrs: AttributesGlobal trace attributes of event log
global_event_attrs: AttributesGlobal event attributes of event log
Trait Implementations§
Source§impl Clone for XESOuterLogData
impl Clone for XESOuterLogData
Source§fn clone(&self) -> XESOuterLogData
fn clone(&self) -> XESOuterLogData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for XESOuterLogData
impl Debug for XESOuterLogData
Source§impl Default for XESOuterLogData
impl Default for XESOuterLogData
Source§fn default() -> XESOuterLogData
fn default() -> XESOuterLogData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for XESOuterLogData
impl<'de> Deserialize<'de> for XESOuterLogData
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 XESOuterLogData
impl RefUnwindSafe for XESOuterLogData
impl Send for XESOuterLogData
impl Sync for XESOuterLogData
impl Unpin for XESOuterLogData
impl UnwindSafe for XESOuterLogData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more