##// END OF EJS Templates
Added signature for changeset 18c17d63fdab
Added signature for changeset 18c17d63fdab

File last commit:

r46112:522ec3dc default
r46404:f59c5d9f stable
Show More
mod.rs
28 lines | 1.0 KiB | application/rls-services+xml | RustLexer
Antoine Cezar
hg-core: remove the `Operation` trait...
r45917 //! A distinction is made between operations 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.
Antoine Cezar
hg-core: add a `CatRev` operation...
r46112 mod cat;
Antoine Cezar
hg-core: define a `DebugData` `Operation`...
r46098 mod debugdata;
Raphaël Gomès
hg-core: define a `dirstate_status` `Operation`...
r45673 mod dirstate_status;
Antoine Cezar
hg-core: add FindRoot operation to find repository root path...
r45502 mod find_root;
Antoine Cezar
hg-core: define a `ListTrackedFiles` `Operation`...
r45918 mod list_tracked_files;
Antoine Cezar
hg-core: add a `CatRev` operation...
r46112 pub use cat::{CatRev, CatRevError, CatRevErrorKind};
Antoine Cezar
rhg: add a `DebugData` `Command` to prepare the `rhg debugdata` subcommand...
r46099 pub use debugdata::{
DebugData, DebugDataError, DebugDataErrorKind, DebugDataKind,
};
Antoine Cezar
hg-core: add FindRoot operation to find repository root path...
r45502 pub use find_root::{FindRoot, FindRootError, FindRootErrorKind};
Antoine Cezar
hg-core: define a `ListTrackedFiles` `Operation`...
r45918 pub use list_tracked_files::{
Antoine Cezar
hg-core: simplify `list_tracked_files` operation...
r46106 ListDirstateTrackedFiles, ListDirstateTrackedFilesError,
ListDirstateTrackedFilesErrorKind,
Antoine Cezar
hg-core: define a `ListTrackedFiles` `Operation`...
r45918 };
Antoine Cezar
hg-core: add a `ListRevTrackedFiles` operation...
r46107 pub use list_tracked_files::{
ListRevTrackedFiles, ListRevTrackedFilesError,
ListRevTrackedFilesErrorKind,
};
Antoine Cezar
hg-core: add FindRoot operation to find repository root path...
r45502
Antoine Cezar
hg-core: remove the `Operation` trait...
r45917 // TODO add an `Operation` trait when GAT have landed (rust #44265):
// there is no way to currently define a trait which can both return
// references to `self` and to passed data, which is what we would need.
// Generic Associated Types may fix this and allow us to have a unified
// interface.