rust/rhg/src/error.rs
author Antoine Cezar <antoine.cezar@octobus.net>
Mon, 22 Jun 2020 15:19:35 +0530
changeset 44982 bacf6c7ef01b
child 45049 513b3ef277a3
permissions -rw-r--r--
rhg: add Command trait for subcommands implemented by rhg Normalizes the interface of the cli's commands Differential Revision: https://phab.mercurial-scm.org/D8611 Differential Revision: https://phab.mercurial-scm.org/D8648
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44982
bacf6c7ef01b rhg: add Command trait for subcommands implemented by rhg
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     1
/// The error type for the Command trait
bacf6c7ef01b rhg: add Command trait for subcommands implemented by rhg
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     2
#[derive(Debug, PartialEq)]
bacf6c7ef01b rhg: add Command trait for subcommands implemented by rhg
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     3
pub struct CommandError {}