##// END OF EJS Templates
hg-core: add FindRoot operation to find repository root path...
hg-core: add FindRoot operation to find repository root path Differential Revision: https://phab.mercurial-scm.org/D8609

File last commit:

r45502:5965efb6 default
r45502:5965efb6 default
Show More
mod.rs
12 lines | 433 B | application/rls-services+xml | RustLexer
mod find_root;
pub use find_root::{FindRoot, FindRootError, FindRootErrorKind};
/// An interface for high-level hg operations.
///
/// A distinction is made between operation and commands.
/// An operation is what can be done whereas a command is what is exposed by
/// the cli. A single command can use several operations to achieve its goal.
pub trait Operation<T> {
type Error;
fn run(&self) -> Result<T, Self::Error>;
}