Trait AppExt

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AppExt for Command

Source§

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

Implementors§