Trait ibc_relayer_cli::prelude::Runnable[][src]

pub trait Runnable {
    pub fn run(&self);
}

Runnable is a common trait for things which can be run without any arguments.

Its primary intended purpose is for use in conjunction with Command.

Required methods

pub fn run(&self)[src]

Run this Runnable

Loading content...

Implementations on Foreign Types

impl<Cmd> Runnable for EntryPoint<Cmd> where
    Cmd: Command + Runnable
[src]

impl Runnable for Box<dyn Fn() + 'static, Global>[src]

impl<C> Runnable for Help<C> where
    C: Command
[src]

pub fn run(&self)[src]

Print help information for the given command

Loading content...

Implementors

impl Runnable for CliCmd[src]

Loading content...