Enum pdb::MachineType[][src]

#[non_exhaustive]pub enum MachineType {
    Unknown,
    Am33,
    Amd64,
    Arm,
    Arm64,
    ArmNT,
    Ebc,
    X86,
    Ia64,
    M32R,
    Mips16,
    MipsFpu,
    MipsFpu16,
    PowerPC,
    PowerPCFP,
    R4000,
    RiscV32,
    RiscV64,
    RiscV128,
    SH3,
    SH3DSP,
    SH4,
    SH5,
    Thumb,
    WceMipsV2,
    Invalid,
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown

The contents of this field are assumed to be applicable to any machine type.

Am33

Matsushita AM33

Amd64

x64

Arm

ARM little endian

Arm64

ARM64 little endian

ArmNT

ARM Thumb-2 little endian

Ebc

EFI byte code

X86

Intel 386 or later processors and compatible processors

Ia64

Intel Itanium processor family

M32R

Mitsubishi M32R little endian

Mips16

MIPS16

MipsFpu

MIPS with FPU

MipsFpu16

MIPS16 with FPU

PowerPC

Power PC little endian

PowerPCFP

Power PC with floating point support

R4000

MIPS little endian

RiscV32

RISC-V 32-bit address space

RiscV64

RISC-V 64-bit address space

RiscV128

RISC-V 128-bit address space

SH3

Hitachi SH3

SH3DSP

Hitachi SH3 DSP

SH4

Hitachi SH4

SH5

Hitachi SH5

Thumb

Thumb

WceMipsV2

MIPS little-endian WCE v2

Invalid

Invalid value

Trait Implementations

impl Clone for MachineType[src]

impl Copy for MachineType[src]

impl Debug for MachineType[src]

impl Display for MachineType[src]

impl Eq for MachineType[src]

impl From<u16> for MachineType[src]

impl PartialEq<MachineType> for MachineType[src]

impl StructuralEq for MachineType[src]

impl StructuralPartialEq for MachineType[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> ToString for T where
    T: Display + ?Sized
[src]

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.