Struct frida_gum_sys::_GumDarwinModule[][src]

#[repr(C)]pub struct _GumDarwinModule {
    pub parent: GObject,
    pub filetype: GumDarwinModuleFiletype,
    pub name: *mut gchar,
    pub uuid: *mut gchar,
    pub task: GumDarwinPort,
    pub is_local: gboolean,
    pub is_kernel: gboolean,
    pub cpu_type: GumCpuType,
    pub ptrauth_support: GumPtrauthSupport,
    pub pointer_size: gsize,
    pub base_address: GumAddress,
    pub source_path: *mut gchar,
    pub source_blob: *mut GBytes,
    pub flags: GumDarwinModuleFlags,
    pub image: *mut GumDarwinModuleImage,
    pub info: *const GumDyldInfoCommand,
    pub symtab: *const GumSymtabCommand,
    pub dysymtab: *const GumDysymtabCommand,
    pub preferred_address: GumAddress,
    pub segments: *mut GArray,
    pub text_ranges: *mut GArray,
    pub rebases: *const guint8,
    pub rebases_end: *const guint8,
    pub rebases_malloc_data: gpointer,
    pub binds: *const guint8,
    pub binds_end: *const guint8,
    pub binds_malloc_data: gpointer,
    pub lazy_binds: *const guint8,
    pub lazy_binds_end: *const guint8,
    pub lazy_binds_malloc_data: gpointer,
    pub exports: *const guint8,
    pub exports_end: *const guint8,
    pub exports_malloc_data: gpointer,
    pub dependencies: *mut GPtrArray,
    pub reexports: *mut GPtrArray,
}

Fields

parent: GObjectfiletype: GumDarwinModuleFiletypename: *mut gcharuuid: *mut gchartask: GumDarwinPortis_local: gbooleanis_kernel: gbooleancpu_type: GumCpuTypeptrauth_support: GumPtrauthSupportpointer_size: gsizebase_address: GumAddresssource_path: *mut gcharsource_blob: *mut GBytesflags: GumDarwinModuleFlagsimage: *mut GumDarwinModuleImageinfo: *const GumDyldInfoCommandsymtab: *const GumSymtabCommanddysymtab: *const GumDysymtabCommandpreferred_address: GumAddresssegments: *mut GArraytext_ranges: *mut GArrayrebases: *const guint8rebases_end: *const guint8rebases_malloc_data: gpointerbinds: *const guint8binds_end: *const guint8binds_malloc_data: gpointerlazy_binds: *const guint8lazy_binds_end: *const guint8lazy_binds_malloc_data: gpointerexports: *const guint8exports_end: *const guint8exports_malloc_data: gpointerdependencies: *mut GPtrArrayreexports: *mut GPtrArray

Trait Implementations

impl Clone for _GumDarwinModule[src]

impl Copy for _GumDarwinModule[src]

impl Debug for _GumDarwinModule[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.