pub struct OcpmConfig {
pub enabled: bool,
pub generate_lifecycle_events: bool,
pub include_object_relationships: bool,
pub compute_variants: bool,
pub max_variants: usize,
pub p2p_process: OcpmProcessConfig,
pub o2c_process: OcpmProcessConfig,
pub output: OcpmOutputConfig,
}Expand description
OCPM (Object-Centric Process Mining) configuration.
Controls generation of OCEL 2.0 compatible event logs with many-to-many event-to-object relationships.
Fields§
§enabled: boolEnable OCPM event log generation
generate_lifecycle_events: boolGenerate lifecycle events (Start/Complete pairs vs atomic events)
include_object_relationships: boolInclude object-to-object relationships in output
compute_variants: boolCompute and export process variants
max_variants: usizeMaximum variants to track (0 = unlimited)
p2p_process: OcpmProcessConfigP2P process configuration
o2c_process: OcpmProcessConfigO2C process configuration
output: OcpmOutputConfigOutput format configuration
Trait Implementations§
Source§impl Clone for OcpmConfig
impl Clone for OcpmConfig
Source§fn clone(&self) -> OcpmConfig
fn clone(&self) -> OcpmConfig
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 OcpmConfig
impl Debug for OcpmConfig
Source§impl Default for OcpmConfig
impl Default for OcpmConfig
Source§impl<'de> Deserialize<'de> for OcpmConfig
impl<'de> Deserialize<'de> for OcpmConfig
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 OcpmConfig
impl RefUnwindSafe for OcpmConfig
impl Send for OcpmConfig
impl Sync for OcpmConfig
impl Unpin for OcpmConfig
impl UnwindSafe for OcpmConfig
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