[][src]Enum rustsec_admin::commands::AdminCmd

pub enum AdminCmd {
    Lint(LintCmd),
    Web(WebCmd),
    Help(Help<Self>),
    Version(VersionCmd),
    AssignId(AssignIdCmd),
}

rustsec-admin CLI subcommands

Variants

Lint(LintCmd)

The lint subcommand

Web(WebCmd)

The web subcommand

Help(Help<Self>)

The help subcommand

Version(VersionCmd)

The version subcommand

AssignId(AssignIdCmd)

The assign-id subcommand

Trait Implementations

impl Command for AdminCmd[src]

fn name() -> &'static str[src]

Name of this program as a string

fn description() -> &'static str[src]

Description of this program

fn version() -> &'static str[src]

Version of this program

fn authors() -> &'static str[src]

Authors of this program

fn subcommand_usage(command: &str) -> Option<Usage>[src]

get usage information for the named subcommand

impl Configurable<AppConfig> for AdminCmd[src]

fn config_path(&self) -> Option<PathBuf>[src]

Location of the configuration file

impl Debug for AdminCmd[src]

impl Options for AdminCmd[src]

impl Runnable for AdminCmd[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err