1use strum_macros::Display; 2 3#[derive(Debug, Copy, Clone, Eq, PartialEq, Display)] 4pub enum PluginTransitionResult { 5 NoChange, 6 Changed, 7}