pub trait AppExt: Sized {
    // Required method
    fn _arg(self, arg: Arg) -> Self;

    // Provided method
    fn arg_quiet(self) -> Self { ... }
}

Required Methods§

source

fn _arg(self, arg: Arg) -> Self

Provided Methods§

source

fn arg_quiet(self) -> Self

Implementations on Foreign Types§

source§

impl AppExt for Command

source§

fn _arg(self, arg: Arg) -> Self

Implementors§