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§

§

impl DynamicEntry for Entries<'_>

§

impl DynamicEntry for Array<'_>

§

impl DynamicEntry for Flags<'_>

§

impl DynamicEntry for Generic<'_>

§

impl DynamicEntry for Library<'_>

§

impl DynamicEntry for Rpath<'_>

§

impl DynamicEntry for RunPath<'_>

§

impl DynamicEntry for SharedObject<'_>