Skip to main content

Module help

Module help 

Source
Expand description

Per-verb documentation metadata for the fslite help command.

Each VerbHelp entry carries the verb’s canonical name, a one-line summary, and the list of --flag names the parser accepts for that verb (mirroring parse at crates/fslite-command/src/parser.rs:177, where every verb dispatches with args.check_known_flags(verb, &[flags])). The renderer uses this to avoid listing flags the verb does not accept.

This list is the single source of truth for the fslite help output and for the reference/cli-verbs.md page in the docs site. When a verb gains or loses a flag in the parser, update the matching entry here in the same commit.

Structs§

VerbHelp
Documentation metadata for one CLI verb.

Constants§

VERB_HELP
The full per-verb metadata table. Order is canonical: alphabetical by name. The total count matches the number of variant arms in parse — 28 verbs.

Functions§

print_verb_help
Print one verb’s help to stdout: summary line, blank line, then either (none) for verbs without flags or one --flag per line under a Flags: header.
print_verb_table
Print the full verb table to stdout, sorted alphabetically by name. Each line is two-space-indented <name> <summary> with names left- padded to the widest name.