[][src]Enum tmkms::commands::KmsCommand

pub enum KmsCommand {
    Help(Help<Self>),
    Keygen(KeygenCommand),
    Start(StartCommand),
    Version(VersionCommand),
    Yubihsm(YubihsmCommand),
    Ledger(LedgerCommand),
}

Subcommands of the KMS command-line application

Variants

Help(Help<Self>)

help subcommand

Keygen(KeygenCommand)

keygen subcommand

Start(StartCommand)

start subcommand

Version(VersionCommand)

version subcommand

Yubihsm(YubihsmCommand)

yubihsm subcommand

Ledger(LedgerCommand)

ledgertm subcommand

Methods

impl KmsCommand[src]

pub fn verbose(&self) -> bool[src]

Are we configured for verbose logging?

Trait Implementations

impl Debug for KmsCommand[src]

impl Runnable for KmsCommand[src]

impl Command for KmsCommand[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

fn from_args<A>(into_args: A) -> Self where
    A: IntoIterator<Item = String>, 
[src]

Parse command-line arguments from a string iterator

fn from_env_args() -> Self[src]

Parse command-line arguments from the environment

fn print_usage_and_exit(args: &[String]) -> ![src]

Print usage information and exit

impl Configurable<KmsConfig> for KmsCommand[src]

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

Get the path to the configuration file, either from selected subcommand or the default

fn load_config_file<P>(&self, path: &P) -> Result<C, Error<FrameworkErrorKind>> where
    P: AsRef<CanonicalPath>, 
[src]

Load the configuration for this command

fn preprocess_config(&self, config: C) -> Result<C, Error<FrameworkErrorKind>>[src]

Process the configuration after it has been loaded, potentially modifying it or returning an error if options are incompatible Read more

impl Options for KmsCommand[src]

fn parse_args<S>(args: &[S], style: ParsingStyle) -> Result<Self, Error> where
    S: AsRef<str>, 
[src]

Parses arguments received from the command line. Read more

fn parse_args_or_exit(style: ParsingStyle) -> Self[src]

Parses arguments from the environment. Read more

fn parse_args_default_or_exit() -> Self[src]

Parses arguments from the environment, using the default parsing style. Read more

fn parse_args_default<S>(args: &[S]) -> Result<Self, Error> where
    S: AsRef<str>, 
[src]

Parses arguments received from the command line, using the default parsing style. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self