Enum pdb::PointerKind[][src]

pub enum PointerKind {
    Near16,
    Far16,
    Huge16,
    BaseSeg,
    BaseVal,
    BaseSegVal,
    BaseAddr,
    BaseSegAddr,
    BaseType,
    BaseSelf,
    Near32,
    Far32,
    Ptr64,
}

The kind of a PointerType.

Variants

Near16

16 bit pointer.

Far16

16:16 far pointer.

Huge16

16:16 huge pointer.

BaseSeg

Based on segment.

BaseVal

Based on value of base.

BaseSegVal

Based on segment value of base.

BaseAddr

Based on address of base.

BaseSegAddr

Based on segment address of base.

BaseType

Based on type.

BaseSelf

Based on self.

Near32

32-bit pointer.

Far32

48-bit 16:32 pointer.

Ptr64

64-bit pointer.

Trait Implementations

impl Clone for PointerKind[src]

impl Copy for PointerKind[src]

impl Debug for PointerKind[src]

impl Eq for PointerKind[src]

impl PartialEq<PointerKind> for PointerKind[src]

impl StructuralEq for PointerKind[src]

impl StructuralPartialEq for PointerKind[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.