pub struct SectionTable<'data> { /* private fields */ }
Expand description

The table of section headers in a COFF or PE file.

Implementations

Parse the section table.

data must be the entire file data. offset must be after the optional file header.

Iterate over the section headers.

Warning: sections indices start at 1.

Return true if the section table is empty.

The number of section headers.

Return the section header at the given index.

The index is 1-based.

Return the section header with the given name.

The returned index is 1-based.

Ignores sections with invalid names.

Compute the maximum file offset used by sections.

This will usually match the end of file, unless the PE file has a data overlay

Return the data at the given virtual address in a PE file.

Ignores sections with invalid data.

Return the data of the section that contains the given virtual address in a PE file.

Also returns the virtual address of that section.

Ignores sections with invalid data.

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

Returns the “default value” for a type. 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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.