Struct object::macho::EntryPointCommand
source · #[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§
source§impl<E: Clone + Endian> Clone for EntryPointCommand<E>
impl<E: Clone + Endian> Clone for EntryPointCommand<E>
source§fn clone(&self) -> EntryPointCommand<E>
fn clone(&self) -> EntryPointCommand<E>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more