bQUARKz be684ab0f9
All checks were successful
Intrepid/Prometeu/Runtime/pipeline/head This commit looks good
Intrepid/Prometeu/Runtime/pipeline/pr-master This commit looks good
add process and task managers
2026-05-14 17:39:55 +01:00

9 lines
140 B
Rust

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum TaskState {
Foreground,
Background,
Suspended,
Closed,
Crashed,
}