(&self)
| 46 | |
| 47 | impl StatementLifecycleEvent { |
| 48 | pub fn as_str(&self) -> &str { |
| 49 | match self { |
| 50 | Self::ExecutionBegan => "execution-began", |
| 51 | Self::OptimizationFinished => "optimization-finished", |
| 52 | Self::StorageDependenciesFinished => "storage-dependencies-finished", |
| 53 | Self::ComputeDependenciesFinished => "compute-dependencies-finished", |
| 54 | Self::ExecutionFinished => "execution-finished", |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | /// Contains all the information necessary to generate the initial |
no outgoing calls