##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r45570:afecc7f7 default
r45591:dd305022 merge default
Show More
commands.rs
8 lines | 204 B | application/rls-services+xml | RustLexer
Antoine Cezar
rhg: add Command trait for subcommands implemented by rhg...
r45515 use crate::error::CommandError;
/// The common trait for rhg commands
///
/// Normalize the interface of the commands provided by rhg
pub trait Command {
fn run(&self) -> Result<(), CommandError>;
}