acts_next/store/data/
proc.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Deserialize, Serialize, Debug, Clone)]
4pub struct Proc {
5    pub id: String,
6    pub state: String,
7    pub mid: String,
8    pub name: String,
9    pub start_time: i64,
10    pub end_time: i64,
11    pub timestamp: i64,
12    pub model: String,
13    pub env_local: String,
14    pub err: Option<String>,
15}