Mercurial > public > mercurial-scm > hg
view rust/rhg/src/exitcode.rs @ 45924:a2eda1ff22aa
requirements: move loading to hg-core and add parsing
No functional change, checking comes later.
Differential Revision: https://phab.mercurial-scm.org/D9398
author | Simon Sapin <simon-commits@exyr.org> |
---|---|
date | Tue, 24 Nov 2020 17:49:16 +0100 |
parents | 513b3ef277a3 |
children | ca3f73cc3cf4 |
line wrap: on
line source
pub type ExitCode = i32; /// Successful exit pub const OK: ExitCode = 0; /// Generic abort pub const ABORT: ExitCode = 255; /// Command not implemented by rhg pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;