pub struct XcoffSection<'data, 'file, Xcoff, R = &'data [u8]>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,{
    pub(super) file: &'file XcoffFile<'data, Xcoff, R>,
    pub(super) section: &'data Xcoff::SectionHeader,
    pub(super) index: SectionIndex,
}Expand description
A section in an XcoffFile.
Most functionality is provided by the ObjectSection trait implementation.
Fields§
§file: &'file XcoffFile<'data, Xcoff, R>§section: &'data Xcoff::SectionHeader§index: SectionIndexImplementations§
Source§impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> XcoffSection<'data, 'file, Xcoff, R>
 
impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> XcoffSection<'data, 'file, Xcoff, R>
Sourcepub fn xcoff_file(&self) -> &'file XcoffFile<'data, Xcoff, R>
 
pub fn xcoff_file(&self) -> &'file XcoffFile<'data, Xcoff, R>
Get the XCOFF file containing this section.
Sourcepub fn xcoff_section(&self) -> &'data Xcoff::SectionHeader
 
pub fn xcoff_section(&self) -> &'data Xcoff::SectionHeader
Get the raw XCOFF section header.
Sourcepub fn xcoff_relocations(&self) -> Result<&'data [Xcoff::Rel]>
 
pub fn xcoff_relocations(&self) -> Result<&'data [Xcoff::Rel]>
Get the raw XCOFF relocation entries for this section.
fn bytes(&self) -> Result<&'data [u8]>
Trait Implementations§
Source§impl<'data, 'file, Xcoff, R> Debug for XcoffSection<'data, 'file, Xcoff, R>
 
impl<'data, 'file, Xcoff, R> Debug for XcoffSection<'data, 'file, Xcoff, R>
Source§impl<'data, 'file, Xcoff, R> ObjectSection<'data> for XcoffSection<'data, 'file, Xcoff, R>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Xcoff, R> ObjectSection<'data> for XcoffSection<'data, 'file, Xcoff, R>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,
Source§type RelocationIterator = XcoffRelocationIterator<'data, 'file, Xcoff, R>
 
type RelocationIterator = XcoffRelocationIterator<'data, 'file, Xcoff, R>
An iterator for the relocations for a section. Read more
Source§fn index(&self) -> SectionIndex
 
fn index(&self) -> SectionIndex
Returns the section index.
Source§fn file_range(&self) -> Option<(u64, u64)>
 
fn file_range(&self) -> Option<(u64, u64)>
Returns offset and size of on-disk segment (if any).
Source§fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
 
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>
 
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>>
 
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]>
 
fn name_bytes(&self) -> Result<&'data [u8]>
Returns the name of the section.
Source§fn segment_name_bytes(&self) -> Result<Option<&[u8]>>
 
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>>
 
fn segment_name(&self) -> Result<Option<&str>>
Returns the name of the segment for this section. Read more
Source§fn kind(&self) -> SectionKind
 
fn kind(&self) -> SectionKind
Return the kind of this section.
Source§fn relocations(&self) -> Self::RelocationIterator
 
fn relocations(&self) -> Self::RelocationIterator
Get the relocations for this section.
Source§fn relocation_map(&self) -> Result<RelocationMap>
 
fn relocation_map(&self) -> Result<RelocationMap>
Construct a relocation map for this section.
Source§fn flags(&self) -> SectionFlags
 
fn flags(&self) -> SectionFlags
Section flags that are specific to each file format.
impl<'data, 'file, Xcoff, R> Sealed for XcoffSection<'data, 'file, Xcoff, R>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,
Auto Trait Implementations§
impl<'data, 'file, Xcoff, R> Freeze for XcoffSection<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> RefUnwindSafe for XcoffSection<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::SectionHeader: RefUnwindSafe,
    R: RefUnwindSafe,
    Xcoff: RefUnwindSafe,
    <Xcoff as FileHeader>::AuxHeader: RefUnwindSafe,
impl<'data, 'file, Xcoff, R> Send for XcoffSection<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::SectionHeader: Sync,
    R: Sync,
    Xcoff: Sync,
    <Xcoff as FileHeader>::AuxHeader: Sync,
impl<'data, 'file, Xcoff, R> Sync for XcoffSection<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::SectionHeader: Sync,
    R: Sync,
    Xcoff: Sync,
    <Xcoff as FileHeader>::AuxHeader: Sync,
impl<'data, 'file, Xcoff, R> Unpin for XcoffSection<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> UnwindSafe for XcoffSection<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::SectionHeader: RefUnwindSafe,
    R: RefUnwindSafe,
    Xcoff: RefUnwindSafe,
    <Xcoff as FileHeader>::AuxHeader: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more