##// END OF EJS Templates
hg-core: check data integrity in `Revlog`...
hg-core: check data integrity in `Revlog` Check that the hash of the data reconstructed from deltas matches the hash stored in the revision. Differential Revision: https://phab.mercurial-scm.org/D9005

File last commit:

r46099:66756b34 default
r46102:b0d6309f default
Show More
commands.rs
12 lines | 280 B | application/rls-services+xml | RustLexer
pub mod debugdata;
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>;
}