pub trait CommandLineParserTrait: CommandLineParserTraitConst {
    fn as_raw_mut_CommandLineParser(&mut self) -> *mut c_void;

    fn about(&mut self, message: &str) -> Result<()> { ... }
}

Required Methods

Provided Methods

Set the about message

The about message will be shown when @ref printMessage is called, right before arguments table.

Implementors