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 file offset of the given virtual address, and the size up to the end of the section containing it.

Returns None if no section contains the address.

Return the data starting at the given virtual address, up to the end of the section containing it.

Ignores sections with invalid data.

Returns None if no section contains the address.

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.

Return the section that contains a given virtual address.

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

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

🔬 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.