mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 06:02:32 +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 {
|
||||
SignedInt,
|
||||
UnsignedInt,
|
||||
|
|
|
@ -51,7 +51,7 @@ where
|
|||
// We do not end up using information from all of the segment
|
||||
// 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)?;
|
||||
continue;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue