Enum gimli::Pointer[][src]

pub enum Pointer {
    Direct(u64),
    Indirect(u64),
}

A decoded pointer.

Variants

This value is the decoded pointer value.

This value is not the pointer value, but points to the address of where the real pointer value lives. In other words, deref this pointer to get the real pointer value.

Chase this pointer at your own risk: do you trust the DWARF data it came from?

Trait Implementations

impl Copy for Pointer
[src]

impl Clone for Pointer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Pointer
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Pointer
[src]

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

This method tests for !=.

impl Eq for Pointer
[src]

impl Default for Pointer
[src]

Returns the "default value" for a type. Read more

impl Into<u64> for Pointer
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Pointer

impl Sync for Pointer