Struct object::macho::EntryPointCommand [−][src]
#[repr(C)]pub struct EntryPointCommand<E: Endian> {
pub cmd: U32<E>,
pub cmdsize: U32<E>,
pub entryoff: U64<E>,
pub stacksize: U64<E>,
}
Fields
cmd: U32<E>
LC_MAIN only used in MH_EXECUTE filetypes
cmdsize: U32<E>
24
entryoff: U64<E>
file (__TEXT) offset of main()
stacksize: U64<E>
if not zero, initial stack size
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for EntryPointCommand<E> where
E: RefUnwindSafe,
impl<E> Send for EntryPointCommand<E> where
E: Send,
impl<E> Sync for EntryPointCommand<E> where
E: Sync,
impl<E> Unpin for EntryPointCommand<E> where
E: Unpin,
impl<E> UnwindSafe for EntryPointCommand<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more