1 2 3 4 5 6 7
/// Represents the stages of execution for a graph #[repr(u64)] #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum ExecutionStage { /// Execution is completed Completed = 0, }