[][src]Enum routinator::operation::Operation

pub enum Operation {
    Init(Init),
    Server(Server),
    Vrps(Vrps),
    Validate(Validate),
    Update(Update),
    PrintConfig(PrintConfig),
    Man(Man),
}

The command to execute.

This type collects all the commands we have defined plus any possible extra configuration they support.

You can create a value from the command line arguments. First, you add all necessary sub-commands and arguments to a clap App via config_args and then process the argument matches into a value in from_arg_matches. Finally, you can execute the created command through the run method.

Variants

Init(Init)
Server(Server)
Vrps(Vrps)
Validate(Validate)
Update(Update)
PrintConfig(PrintConfig)
Man(Man)

Implementations

impl Operation[src]

pub fn prepare() -> Result<(), Error>[src]

Prepares everything.

Call this before doing anything else.

pub fn config_args<'a: 'b, 'b>(app: App<'a, 'b>) -> App<'a, 'b>[src]

Adds the command configuration to a clap app.

pub fn from_arg_matches(
    matches: &ArgMatches<'_>,
    cur_dir: &Path,
    config: &mut Config
) -> Result<Self, Error>
[src]

Creates a command from clap matches.

pub fn run(self, config: Config) -> Result<(), ExitError>[src]

Runs the command.

Depending on the command, this method may switch to logging at some point.

Auto Trait Implementations

Blanket Implementations

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,