##// END OF EJS Templates
rhg: pass `ui` to `Command` `run`...
rhg: pass `ui` to `Command` `run` Allow implementation of `From<clap::ArgMatches> for Command` Differential Revision: https://phab.mercurial-scm.org/D8954

File last commit:

r46009:ed95ccc9 default
r46009:ed95ccc9 default
Show More
commands.rs
11 lines | 261 B | application/rls-services+xml | RustLexer
pub mod files;
pub mod root;
use crate::error::CommandError;
use crate::ui::Ui;
/// The common trait for rhg commands
///
/// Normalize the interface of the commands provided by rhg
pub trait Command {
fn run(&self, ui: &Ui) -> Result<(), CommandError>;
}