mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 14:12:31 +00:00
EBML: Add missing derive
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
de3536c8ee
commit
f783dd0aa2
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ impl ElementHeader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone, Eq, PartialEq)]
|
||||||
pub enum ElementDataType {
|
pub enum ElementDataType {
|
||||||
SignedInt,
|
SignedInt,
|
||||||
UnsignedInt,
|
UnsignedInt,
|
||||||
|
|
|
@ -51,7 +51,7 @@ where
|
||||||
// We do not end up using information from all of the segment
|
// We do not end up using information from all of the segment
|
||||||
// elements, so we can just skip any useless ones.
|
// elements, so we can just skip any useless ones.
|
||||||
|
|
||||||
log::debug!("Skipping EBML child element: {:?}", child);
|
log::debug!("Skipping EBML child element: {:?}", child.ident);
|
||||||
element_reader.skip(size)?;
|
element_reader.skip(size)?;
|
||||||
continue;
|
continue;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue