pub trait Tag:
FromPrimitive
+ PartialEq
+ Display
+ Debug
+ Copy {
// Required methods
fn tag_type_name() -> &'static str;
fn to_u32(&self) -> u32;
}
Expand description
Header tag.
Each and every header has a particular header tag that identifies the type of the header the format / information contained in that header.
Required Methods§
Object Safety§
This trait is not object safe.