Enum gimli::Pointer [−][src]
A decoded pointer.
Variants
Direct(u64)This value is the decoded pointer value.
Indirect(u64)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 Copy for Pointerimpl Clone for Pointer[src]
impl Clone for Pointerfn clone(&self) -> Pointer[src]
fn clone(&self) -> PointerReturns 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 Debug for Pointer[src]
impl Debug for Pointerfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Pointer[src]
impl PartialEq for Pointerfn eq(&self, other: &Pointer) -> bool[src]
fn eq(&self, other: &Pointer) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Pointer) -> bool[src]
fn ne(&self, other: &Pointer) -> boolThis method tests for !=.
impl Eq for Pointer[src]
impl Eq for Pointerimpl Default for Pointer[src]
impl Default for Pointerimpl Into<u64> for Pointer[src]
impl Into<u64> for Pointer