1 2 3 4 5 6 7
use crate::Pid; pub struct TaskState { pub previous_energy_usage: u64, pub budget: u64, pub parent: Pid, }