1#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)] 2pub enum Status { 3 Pass, 4 Fail, 5 Pending, 6 Error(String), 7}