Enum gimli::read::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 Clone for Pointer
[src]
impl Clone for Pointer
[src]fn clone(&self) -> Pointer
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Pointer
[src]
impl Eq for Pointer
[src]
impl StructuralEq for Pointer
[src]
impl StructuralPartialEq for Pointer
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
The resulting type after obtaining ownership.