Trait PetriVmInspector

Source
pub trait PetriVmInspector:
    Send
    + Sync
    + 'static {
    // Required method
    fn inspect_all<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Node>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Interface for getting information about the state of the VM

Required Methods§

Source

fn inspect_all<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Node>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get information about the state of the VM

Implementors§