9 lines
138 B
Rust
9 lines
138 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum ProcessState {
|
|
Created,
|
|
Running,
|
|
Stopped,
|
|
Suspended,
|
|
Crashed,
|
|
}
|