| 96 | impl<V, F> private::Sealed for Command<V, F> {} |
| 97 | |
| 98 | pub trait DynCommandBase { |
| 99 | fn exec(&self); |
| 100 | fn name(&self) -> Arc<str>; |
| 101 | fn key(&self) -> Option<HotKey>; |
| 102 | } |
| 103 | |
| 104 | pub trait CommandBase: DynCommandBase + Clone {} |
| 105 |
nothing calls this directly
no outgoing calls
no test coverage detected