pub trait Flag {
    fn usage<'a>() -> Arg<'a>;
    fn handler() -> Result<(), Error>;
}
Expand description

Abstract flag trait

Required Methods

Implementors