fix: Use correct struct for metadatum labels (#96)

This commit is contained in:
Santiago Carmuega 2022-04-27 20:19:56 -03:00 committed by GitHub
parent 2b8eabdde9
commit 5c6979d3e5
2 changed files with 5 additions and 3 deletions

View file

@ -377,7 +377,7 @@ where
}
/// A uint structure that preserves original int length
#[derive(Debug, PartialEq, Copy, Clone, PartialOrd)]
#[derive(Debug, PartialEq, Copy, Clone, PartialOrd, Eq, Ord)]
pub enum AnyUInt {
MajorByte(u8),
U8(u8),