pub type Command<S> = Option<Arc<dyn Fn(&CommandContext<S>) -> i32 + Send + Sync>>;
enum Command<S> { None, Some(Arc<dyn Fn(&CommandContext<S>) -> i32 + Sync + Send>), }
No value.
Some value of type T.
T