EBML: Add missing derive

Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2023-11-28 13:32:19 -05:00
parent de3536c8ee
commit f783dd0aa2
No known key found for this signature in database
GPG key ID: DA95198DC17C4568
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ impl ElementHeader {
}
}
#[derive(Copy, Clone)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub enum ElementDataType {
SignedInt,
UnsignedInt,

View file

@ -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;
},