1use std::sync::Arc; 2 3use libpetri_core::token::ErasedToken; 4 5/// An external event to inject into the executor. 6#[derive(Debug, Clone)] 7pub struct ExternalEvent { 8 pub place_name: Arc<str>, 9 pub token: ErasedToken, 10}