useserde::{Deserialize, Serialize};#[derive(Deserialize, Serialize, Clone, Debug)]/// Represent the state of an observation from the data from the simulator https://gitlab.com/forestry-operator-digital-twin/data
pubstructLabel{pubdata:Vec<Inner>,
}#[derive(Deserialize, Serialize, Clone, Debug)]pubstructInner{pubfrom:usize,
pubto:usize,
pubstate:usize,
}