1 2 3 4 5 6 7
use super::status::Status; #[derive(Debug, Clone, Deserialize)] pub struct Context { pub ancestors: Vec<Status>, pub descendants: Vec<Status>, }
1 2 3 4 5 6 7
use super::status::Status; #[derive(Debug, Clone, Deserialize)] pub struct Context { pub ancestors: Vec<Status>, pub descendants: Vec<Status>, }