alfred_workflow_rust_project/
common.rs

1// trait for enum to get ident key
2pub trait EnumIdent {
3    fn name(&self) -> &'static str;
4}