Enum dwarf::AttributeData [] [src]

pub enum AttributeData<'a> {
    Address(u64),
    Block(&'a [u8]),
    Data1(u8),
    Data2(u16),
    Data4(u32),
    Data8(u64),
    UData(u64),
    SData(i64),
    Flag(bool),
    String(&'a str),
    StringOffset(u64),
    Ref(u64),
    RefAddress(u64),
    RefSig(u64),
    SecOffset(u64),
    ExprLoc(&'a [u8]),
}

Variants

Methods

impl<'a, 'b> AttributeData<'a>
[src]

impl<'a, 'b> AttributeData<'a>
[src]

Trait Implementations

impl<'a> Display for AttributeData<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Debug for AttributeData<'a>
[src]

Formats the value using the given formatter.

impl<'a> PartialEq for AttributeData<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> Eq for AttributeData<'a>
[src]