clip/flag
Functions for building Flags. A Flag is a named option with no
associated value, such as --debug. A Flag produces True when present
and False when not present.
Types
Values
pub fn new(name: String) -> Flag
Create a new Flag with the provided name. Flags always produce a Bool
– True if present and False if not present.