Type Alias object::read::xcoff::XcoffSection32

source ·
pub type XcoffSection32<'data, 'file, R = &'data [u8]> = XcoffSection<'data, 'file, FileHeader32, R>;
Expand description

A section in an XcoffFile32.

Aliased Type§

struct XcoffSection32<'data, 'file, R = &'data [u8]> { /* private fields */ }

Implementations

source§

impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> XcoffSection<'data, 'file, Xcoff, R>

source

pub fn xcoff_file(&self) -> &'file XcoffFile<'data, Xcoff, R>

Get the XCOFF file containing this section.

source

pub fn xcoff_section(&self) -> &'data Xcoff::SectionHeader

Get the raw XCOFF section header.

source

pub fn xcoff_relocations(&self) -> Result<&'data [Xcoff::Rel]>

Get the raw XCOFF relocation entries for this section.

Trait Implementations

source§

impl<'data, 'file, Xcoff, R> Debug for XcoffSection<'data, 'file, Xcoff, R>
where Xcoff: FileHeader + Debug, R: ReadRef<'data> + Debug, Xcoff::SectionHeader: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'data, 'file, Xcoff, R> ObjectSection<'data> for XcoffSection<'data, 'file, Xcoff, R>
where Xcoff: FileHeader, R: ReadRef<'data>,

§

type RelocationIterator = XcoffRelocationIterator<'data, 'file, Xcoff, R>

An iterator for the relocations for a section. Read more
source§

fn index(&self) -> SectionIndex

Returns the section index.
source§

fn address(&self) -> u64

Returns the address of the section.
source§

fn size(&self) -> u64

Returns the size of the section in memory.
source§

fn align(&self) -> u64

Returns the alignment of the section in memory.
source§

fn file_range(&self) -> Option<(u64, u64)>

Returns offset and size of on-disk segment (if any).
source§

fn data(&self) -> Result<&'data [u8]>

Returns the raw contents of the section. Read more
source§

fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>

Return the raw contents of the section data in the given range. Read more
source§

fn compressed_file_range(&self) -> Result<CompressedFileRange>

Returns the potentially compressed file range of the section, along with information about the compression.
source§

fn compressed_data(&self) -> Result<CompressedData<'data>>

Returns the potentially compressed contents of the section, along with information about the compression.
source§

fn name_bytes(&self) -> Result<&'data [u8]>

Returns the name of the section.
source§

fn name(&self) -> Result<&'data str>

Returns the name of the section. Read more
source§

fn segment_name_bytes(&self) -> Result<Option<&[u8]>>

Returns the name of the segment for this section.
source§

fn segment_name(&self) -> Result<Option<&str>>

Returns the name of the segment for this section. Read more
source§

fn kind(&self) -> SectionKind

Return the kind of this section.
source§

fn relocations(&self) -> Self::RelocationIterator

Get the relocations for this section.
source§

fn relocation_map(&self) -> Result<RelocationMap>

Construct a relocation map for this section.
source§

fn flags(&self) -> SectionFlags

Section flags that are specific to each file format.
source§

fn uncompressed_data(&self) -> Result<Cow<'data, [u8]>>

Returns the uncompressed contents of the section. Read more