pub struct PetriNet {
pub object_type: String,
pub transitions: Vec<String>,
pub places: Vec<Place>,
pub warnings: Vec<String>,
}Expand description
The discovered Petri net of one object type.
Fields§
§object_type: String§transitions: Vec<String>§places: Vec<Place>§warnings: Vec<String>Honest limits hit on this log (self-loops, size cutoff, …).
Trait Implementations§
impl Eq for PetriNet
impl StructuralPartialEq for PetriNet
Auto Trait Implementations§
impl Freeze for PetriNet
impl RefUnwindSafe for PetriNet
impl Send for PetriNet
impl Sync for PetriNet
impl Unpin for PetriNet
impl UnsafeUnpin for PetriNet
impl UnwindSafe for PetriNet
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