Struct dwarf::Abbrev [] [src]

pub struct Abbrev {
    pub code: u64,
    pub tag: DwTag,
    pub children: bool,
    pub attributes: Vec<AbbrevAttribute>,
}

Fields

code: u64 tag: DwTag children: bool attributes: Vec<AbbrevAttribute>

Methods

impl Abbrev
[src]

fn read<R: Read>(r: &mut R) -> Result<Option<Abbrev>, ReadError>

impl Abbrev
[src]

fn write_null<W: Write>(w: &mut W) -> Result<()>

fn write<W: Write>(&self, w: &mut W) -> Result<()>

Trait Implementations

impl Eq for Abbrev
[src]

impl PartialEq for Abbrev
[src]

fn eq(&self, __arg_0: &Abbrev) -> bool

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

fn ne(&self, __arg_0: &Abbrev) -> bool

This method tests for !=.

impl Debug for Abbrev
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.