Enum osoy::operator::Operator[][src]

pub enum Operator {
    clone(Opt),
    completions(Opt),
    execute(Opt),
    link(Opt),
    list(Opt),
    locate(Opt),
    make(Opt),
    new(Opt),
    pull(Opt),
    remove(Opt),
    rename(Opt),
    unlink(Opt),
}

Variants

clone(Opt)

Tuple Fields of clone

0: Opt
completions(Opt)

Tuple Fields of completions

0: Opt
execute(Opt)

Tuple Fields of execute

0: Opt

Tuple Fields of link

0: Opt
list(Opt)

Tuple Fields of list

0: Opt
locate(Opt)

Tuple Fields of locate

0: Opt
make(Opt)

Tuple Fields of make

0: Opt
new(Opt)

Tuple Fields of new

0: Opt
pull(Opt)

Tuple Fields of pull

0: Opt
remove(Opt)

Tuple Fields of remove

0: Opt
rename(Opt)

Tuple Fields of rename

0: Opt

Tuple Fields of unlink

0: Opt

Trait Implementations

Formats the value using the given formatter. Read more

Returns clap::App corresponding to the struct.

Builds the struct from clap::ArgMatches. It’s guaranteed to succeed if matches originates from an App generated by StructOpt::clap called on the same type, otherwise it must panic. Read more

Builds the struct from the command line arguments (std::env::args_os). Calls clap::Error::exit on failure, printing the error message and aborting the program. Read more

Builds the struct from the command line arguments (std::env::args_os). Unlike StructOpt::from_args, returns clap::Error on failure instead of aborting the program, so calling .exit is up to you. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.