1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//! Data model for argot commands.
//!
//! Every item in the argot command tree is represented by a [`Command`]. Related
//! types — [`Argument`], [`Flag`], [`Example`] — attach metadata that drives
//! both parsing and documentation generation.
//!
//! ## Builder Pattern
//!
//! All model types are constructed through consuming builders:
//!
//! ```
//! # use argot_cmd::model::{Command, Argument, Flag, Example};
//! let cmd = Command::builder("deploy")
//! .summary("Deploy the application")
//! .argument(
//! Argument::builder("env")
//! .description("Target environment")
//! .required()
//! .build()
//! .unwrap(),
//! )
//! .flag(
//! Flag::builder("dry-run")
//! .short('n')
//! .description("Simulate without making changes")
//! .build()
//! .unwrap(),
//! )
//! .build()
//! .unwrap();
//!
//! assert_eq!(cmd.canonical, "deploy");
//! ```
//!
//! ## Handler Functions and Parsed Commands
//!
//! A [`HandlerFn`] is an `Arc`-wrapped closure that receives a [`ParsedCommand`]
//! reference and returns `Result<(), Box<dyn Error>>`. The `Arc` wrapper means
//! cloning a [`Command`] only bumps a reference count — no deep copy of the
//! closure occurs.
//!
//! [`ParsedCommand`] is the output of a successful parse: it borrows the matched
//! [`Command`] from the registry and owns the resolved argument and flag maps.
/// Positional argument definition and builder.
/// Command definition, builder, handler type, and parsed command output.
/// Usage example type for commands.
/// Named flag definition and builder.
pub use ;
pub use AsyncHandlerFn;
pub use ;
pub use Example;
pub use ;
use Error;
/// Error returned by builder `build()` methods.
///
/// Variants are returned from [`CommandBuilder::build`], [`ArgumentBuilder::build`],
/// and [`FlagBuilder::build`] when validation fails. The list of variants includes
/// checks for empty names, duplicate aliases, duplicate flags, duplicate arguments,
/// duplicate subcommands, and variadic argument ordering.
///
/// # Examples
///
/// ```
/// # use argot_cmd::model::{Command, BuildError};
/// assert_eq!(Command::builder("").build().unwrap_err(), BuildError::EmptyCanonical);
/// ```