1pub trait EnumToString { 2 fn as_str(&self) -> &'static str; 3 fn as_dbg(&self) -> &'static str; 4} 5 6pub trait SerdeEnumToString { 7 fn as_str(&self) -> &'static str; 8 fn as_dbg(&self) -> &'static str; 9}