##// END OF EJS Templates
hgdemandimport: exclude more sqlalchemy modules...
hgdemandimport: exclude more sqlalchemy modules We could potentially exclude the entire sqlalchemy library.

File last commit:

r46112:522ec3dc default
r46179:07731064 5.5.2 stable
Show More
mod.rs
13 lines | 454 B | application/rls-services+xml | RustLexer
mod dirstate_status;
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>;
}