FileHeaderSpec, FileHeaderData can derive Debug
This commit is contained in:
parent
d54825de6b
commit
e6fb2f232d
1 changed files with 2 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
#[derive(Debug)]
|
||||
pub enum FileHeaderSpec {
|
||||
Null,
|
||||
Bool,
|
||||
|
@ -9,6 +10,7 @@ pub enum FileHeaderSpec {
|
|||
Array { allowed_types: Box<Vec<FileHeaderSpec>> },
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum FileHeaderData {
|
||||
Null,
|
||||
Bool(bool),
|
||||
|
|
Loading…
Reference in a new issue