pub trait DynamicEntry {
    // Provided methods
    fn tag(&self) -> Tag { ... }
    fn value(&self) -> u64 { ... }
}
Expand description

Trait shared by all the Entries

Provided Methods§

fn tag(&self) -> Tag

Dynamic TAG associated with the entry

fn value(&self) -> u64

Raw value which should be interpreted according to the DynamicEntry::tag

Implementors§