pub struct DiscoveredBlueprint {
pub procedures: Vec<DiscoveredProcedure>,
pub phases: Vec<String>,
pub total_events_analyzed: usize,
}Expand description
A blueprint inferred from an observed event log.
Fields§
§procedures: Vec<DiscoveredProcedure>One entry per unique procedure_id found in the event log.
phases: Vec<String>Unique phase identifiers observed across all events.
total_events_analyzed: usizeTotal number of events that were analysed.
Trait Implementations§
Source§impl Clone for DiscoveredBlueprint
impl Clone for DiscoveredBlueprint
Source§fn clone(&self) -> DiscoveredBlueprint
fn clone(&self) -> DiscoveredBlueprint
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 DiscoveredBlueprint
impl Debug for DiscoveredBlueprint
Auto Trait Implementations§
impl Freeze for DiscoveredBlueprint
impl RefUnwindSafe for DiscoveredBlueprint
impl Send for DiscoveredBlueprint
impl Sync for DiscoveredBlueprint
impl Unpin for DiscoveredBlueprint
impl UnsafeUnpin for DiscoveredBlueprint
impl UnwindSafe for DiscoveredBlueprint
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