[]Enum symbolic::debuginfo::pdb::pdb::PointerKind

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

impl Copy for PointerKind

impl Debug for PointerKind

impl Eq for PointerKind

impl PartialEq<PointerKind> for PointerKind

impl StructuralEq for PointerKind

impl StructuralPartialEq for PointerKind

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.