Struct object::macho::Section64

source ·
#[repr(C)]
pub struct Section64<E: Endian> { pub sectname: [u8; 16], pub segname: [u8; 16], pub addr: U64<E>, pub size: U64<E>, pub offset: U32<E>, pub align: U32<E>, pub reloff: U32<E>, pub nreloc: U32<E>, pub flags: U32<E>, pub reserved1: U32<E>, pub reserved2: U32<E>, pub reserved3: U32<E>, }
Expand description

64-bit section.

Fields§

§sectname: [u8; 16]

name of this section

§segname: [u8; 16]

segment this section goes in

§addr: U64<E>

memory address of this section

§size: U64<E>

size in bytes of this section

§offset: U32<E>

file offset of this section

§align: U32<E>

section alignment (power of 2)

§reloff: U32<E>

file offset of relocation entries

§nreloc: U32<E>

number of relocation entries

§flags: U32<E>

flags (section type and attributes)

§reserved1: U32<E>

reserved (for offset or index)

§reserved2: U32<E>

reserved (for count or sizeof)

§reserved3: U32<E>

reserved

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Return the sectname bytes up until the null terminator.
Return the segname bytes up until the null terminator.
Return the offset and size of the section in the file. Read more
Return the section data. Read more
Return the relocation array. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.