Remove ChainBehavior.

This commit is contained in:
Tom Alexander
2023-04-18 20:44:58 -04:00
parent 35eff51d1b
commit a2051aca4f
8 changed files with 7 additions and 20 deletions

View File

@@ -9,3 +9,9 @@ pub enum ExitClass {
/// Elements who cede priority to alpha elements when matching.
Beta = 300,
}
impl std::fmt::Display for ExitClass {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{:?}", self)
}
}