1 2 3 4 5 6 7 8 9 10 11
use loopctl::Tool; use serde::Deserialize; /// Doc. #[derive(Tool, Deserialize)] #[tool(description = "x", handler = "not-an-ident")] struct Bad { a: String, } fn main() {}