Enum pdb::Indirection[][src]

pub enum Indirection {
    Near16,
    Far16,
    Huge16,
    Near32,
    Far32,
    Near64,
    Near128,
}

Pointer mode of primitive types.

This is partially overlapping with PointerKind for regular pointer type definitions. While PointerKind can specify many more pointer types, including relative pointers, Indirection also contains a 128-bit variant.

Variants

Near16

16-bit (“near”) pointer.

Far16

16:16 far pointer.

Huge16

16:16 huge pointer.

Near32

32-bit pointer.

Far32

48-bit 16:32 pointer.

Near64

64-bit near pointer.

Near128

128-bit near pointer.

Trait Implementations

impl Clone for Indirection[src]

impl Copy for Indirection[src]

impl Debug for Indirection[src]

impl Eq for Indirection[src]

impl PartialEq<Indirection> for Indirection[src]

impl StructuralEq for Indirection[src]

impl StructuralPartialEq for Indirection[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.