##// END OF EJS Templates
rust-core: add missing `Debug` traits...
Raphaël Gomès -
r45052:ece43c79 default
parent child Browse files
Show More
@@ -623,6 +623,7 b" fn extend_from_dmap<'a>("
623 );
623 );
624 }
624 }
625
625
626 #[derive(Debug)]
626 pub struct DirstateStatus<'a> {
627 pub struct DirstateStatus<'a> {
627 pub modified: Vec<Cow<'a, HgPath>>,
628 pub modified: Vec<Cow<'a, HgPath>>,
628 pub added: Vec<Cow<'a, HgPath>>,
629 pub added: Vec<Cow<'a, HgPath>>,
@@ -679,6 +680,7 b" fn build_response<'a>("
679 )
680 )
680 }
681 }
681
682
683 #[derive(Debug)]
682 pub enum StatusError {
684 pub enum StatusError {
683 IO(std::io::Error),
685 IO(std::io::Error),
684 Path(HgPathError),
686 Path(HgPathError),
@@ -103,6 +103,7 b' impl ToString for DirstateMapError {'
103 }
103 }
104 }
104 }
105
105
106 #[derive(Debug)]
106 pub enum DirstateError {
107 pub enum DirstateError {
107 Parse(DirstateParseError),
108 Parse(DirstateParseError),
108 Pack(DirstatePackError),
109 Pack(DirstatePackError),
General Comments 0
You need to be logged in to leave comments. Login now