argot-cmd 0.2.0

An agent-first command interface framework for Rust
Documentation
1
2
3
4
5
6
7
//! Expected error: "`#[derive(ArgotCommand)]` cannot be used on enum `MyEnum` — only structs are supported"
use argot::ArgotCommand;

#[derive(ArgotCommand)]
enum MyEnum { A, B }

fn main() {}