Submitter | phabricator |
---|---|
Date | March 12, 2020, 11:43 p.m. |
Message ID | <differential-rev-PHID-DREV-atjqvxxv4mjd35s3lzj7-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/45758/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/rust/hg-core/src/lib.rs b/rust/hg-core/src/lib.rs --- a/rust/hg-core/src/lib.rs +++ b/rust/hg-core/src/lib.rs @@ -103,6 +103,7 @@ } } +#[derive(Debug)] pub enum DirstateError { Parse(DirstateParseError), Pack(DirstatePackError), diff --git a/rust/hg-core/src/dirstate/status.rs b/rust/hg-core/src/dirstate/status.rs --- a/rust/hg-core/src/dirstate/status.rs +++ b/rust/hg-core/src/dirstate/status.rs @@ -623,6 +623,7 @@ ); } +#[derive(Debug)] pub struct DirstateStatus<'a> { pub modified: Vec<Cow<'a, HgPath>>, pub added: Vec<Cow<'a, HgPath>>, @@ -679,6 +680,7 @@ ) } +#[derive(Debug)] pub enum StatusError { IO(std::io::Error), Path(HgPathError),