[][src]Struct tmkms::commands::StartCommand

pub struct StartCommand {
    pub config: Option<String>,
    pub verbose: bool,
}

The start command

Fields

config: Option<String>

Path to configuration file

verbose: bool

Print debugging information

Trait Implementations

impl Default for StartCommand[src]

impl Debug for StartCommand[src]

impl Runnable for StartCommand[src]

fn run(&self)[src]

Run the KMS

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

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

Get usage information for a particular subcommand (if available)

impl Options for StartCommand[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

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default