(&self)
| 914 | |
| 915 | impl Stage { |
| 916 | pub fn short_name(&self) -> &'static str { |
| 917 | match self { |
| 918 | Stage::Import => "imp", |
| 919 | Stage::Havoc => "hav", |
| 920 | Stage::MultiStreamExtend => "ext", |
| 921 | Stage::MultiStreamExtendI2S => "ex2", |
| 922 | Stage::Trim => "trm", |
| 923 | Stage::Colorization => "col", |
| 924 | Stage::InputToState => "i2s", |
| 925 | } |
| 926 | } |
| 927 | |
| 928 | pub fn is_extension(&self) -> bool { |
| 929 | matches!(self, Self::MultiStreamExtend | Self::MultiStreamExtendI2S) |
nothing calls this directly
no outgoing calls
no test coverage detected