Enum idalib_sys::inf::filetype_t

#[repr(u32)]
pub enum filetype_t {
Show 28 variants f_EXE_old = 0, f_COM_old = 1, f_BIN = 2, f_DRV = 3, f_WIN = 4, f_HEX = 5, f_MEX = 6, f_LX = 7, f_LE = 8, f_NLM = 9, f_COFF = 10, f_PE = 11, f_OMF = 12, f_SREC = 13, f_ZIP = 14, f_OMFLIB = 15, f_AR = 16, f_LOADER = 17, f_ELF = 18, f_W32RUN = 19, f_AOUT = 20, f_PRC = 21, f_EXE = 22, f_COM = 23, f_AIXAR = 24, f_MACHO = 25, f_PSXOBJ = 26, f_MD1IMG = 27,
}
Expand description

Known input file formats (kept in \inf{filetype}):

Variants§

§

f_EXE_old = 0

< MS DOS EXE File

§

f_COM_old = 1

< MS DOS COM File

§

f_BIN = 2

< Binary File

§

f_DRV = 3

< MS DOS Driver

§

f_WIN = 4

< New Executable (NE)

§

f_HEX = 5

< Intel Hex Object File

§

f_MEX = 6

< MOS Technology Hex Object File

§

f_LX = 7

< Linear Executable (LX)

§

f_LE = 8

< Linear Executable (LE)

§

f_NLM = 9

< Netware Loadable Module (NLM)

§

f_COFF = 10

< Common Object File Format (COFF)

§

f_PE = 11

< Portable Executable (PE)

§

f_OMF = 12

< Object Module Format

§

f_SREC = 13

< Motorola SREC (S-record)

§

f_ZIP = 14

< ZIP file (this file is never loaded to IDA database)

§

f_OMFLIB = 15

< Library of OMF Modules

§

f_AR = 16

< ar library

§

f_LOADER = 17

< file is loaded using LOADER DLL

§

f_ELF = 18

< Executable and Linkable Format (ELF)

§

f_W32RUN = 19

< Watcom DOS32 Extender (W32RUN)

§

f_AOUT = 20

< Linux a.out (AOUT)

§

f_PRC = 21

< PalmPilot program file

§

f_EXE = 22

< MS DOS EXE File

§

f_COM = 23

< MS DOS COM File

§

f_AIXAR = 24

< AIX ar library

§

f_MACHO = 25

< Mac OS X Mach-O

§

f_PSXOBJ = 26

< Sony Playstation PSX object file

§

f_MD1IMG = 27

< Mediatek Firmware Image

Trait Implementations§

§

impl Clone for filetype_t

§

fn clone(&self) -> filetype_t

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl ExternType for filetype_t

§

type Id = (f, i, l, e, t, y, p, e, __, t)

A type-level representation of the type’s C++ namespace and type name. Read more
§

type Kind = Trivial

§

impl Hash for filetype_t

§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for filetype_t

§

fn eq(&self, other: &filetype_t) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for filetype_t

§

impl SharedPtrTarget for filetype_t

§

impl StructuralPartialEq for filetype_t

§

impl UniquePtrTarget for filetype_t

§

impl VectorElement for filetype_t

§

impl WeakPtrTarget for filetype_t

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithinBoxTrivial for T
where T: ExternType<Kind = Trivial> + Unpin,

§

fn within_box(self) -> Pin<Box<T>>

§

impl<T> WithinUniquePtrTrivial for T
where T: UniquePtrTarget + ExternType<Kind = Trivial> + Unpin,