[][src]Enum pdb::Indirection

pub enum Indirection {
    None,
    Pointer16,
    FarPointer1616,
    HugePointer1616,
    Pointer32,
    Pointer1632,
    Pointer64,
}

Pointer kinds.

Variants

None
Pointer16

16-bit ("near") pointer

FarPointer1616

16:16 far pointer

HugePointer1616

16:16 huge pointer

Pointer32

32-bit pointer

Pointer1632

48-bit 16:32 pointer

Pointer64

64-bit pointer

Trait Implementations

impl Eq for Indirection[src]

impl Copy for Indirection[src]

impl PartialEq<Indirection> for Indirection[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for Indirection[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Indirection[src]

Auto Trait Implementations

impl Send for Indirection

impl Sync for Indirection

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.