diff rust/hg-core/src/lib.rs @ 44562:ece43c79333e

rust-core: add missing `Debug` traits Turns out you need them when trying to use `hg-core` as a library. Who knew. Differential Revision: https://phab.mercurial-scm.org/D8278
author Raphaël Gomès <rgomes@octobus.net>
date Fri, 13 Mar 2020 00:41:22 +0100
parents d880805d5442
children f8427841c8fc
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs	Thu Dec 12 16:24:43 2019 -0800
+++ b/rust/hg-core/src/lib.rs	Fri Mar 13 00:41:22 2020 +0100
@@ -103,6 +103,7 @@
     }
 }
 
+#[derive(Debug)]
 pub enum DirstateError {
     Parse(DirstateParseError),
     Pack(DirstatePackError),