error[E0277]: the trait bound `ManualArgs: ToolInputSchema` is not satisfied
--> tests/ui/compile_fail/missing_tool_input_derive.rs:18:70
|
18 | #[tool(name = "manual", description = "Manual input schema", input = ManualArgs)]
| ^^^^^^^^^^ unsatisfied trait bound
|
help: the trait `ToolInputSchema` is not implemented for `ManualArgs`
--> tests/ui/compile_fail/missing_tool_input_derive.rs:10:1
|
10 | struct ManualArgs;
| ^^^^^^^^^^^^^^^^^