Struct gimli::Abbreviation [−][src]
pub struct Abbreviation { /* fields omitted */ }An abbreviation describes the shape of a DebuggingInformationEntry's type:
its code, tag type, whether it has children, and its set of attributes.
Methods
impl Abbreviation[src]
impl Abbreviationpub fn new(
code: u64,
tag: DwTag,
has_children: DwChildren,
attributes: Vec<AttributeSpecification>
) -> Abbreviation[src]
pub fn new(
code: u64,
tag: DwTag,
has_children: DwChildren,
attributes: Vec<AttributeSpecification>
) -> Abbreviationpub fn code(&self) -> u64[src]
pub fn code(&self) -> u64Get this abbreviation's code.
pub fn tag(&self) -> DwTag[src]
pub fn tag(&self) -> DwTagGet this abbreviation's tag.
pub fn has_children(&self) -> bool[src]
pub fn has_children(&self) -> boolReturn true if this abbreviation's type has children, false otherwise.
pub fn attributes(&self) -> &[AttributeSpecification][src]
pub fn attributes(&self) -> &[AttributeSpecification]Get this abbreviation's attributes.
Trait Implementations
impl Debug for Abbreviation[src]
impl Debug for Abbreviationfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Abbreviation[src]
impl Clone for Abbreviationfn clone(&self) -> Abbreviation[src]
fn clone(&self) -> AbbreviationReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Abbreviation[src]
impl PartialEq for Abbreviationfn eq(&self, other: &Abbreviation) -> bool[src]
fn eq(&self, other: &Abbreviation) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Abbreviation) -> bool[src]
fn ne(&self, other: &Abbreviation) -> boolThis method tests for !=.
impl Eq for Abbreviation[src]
impl Eq for AbbreviationAuto Trait Implementations
impl Send for Abbreviation
impl Send for Abbreviationimpl Sync for Abbreviation
impl Sync for Abbreviation