pub struct CoffSection<'data, 'file, R: ReadRef<'data> = &'data [u8], Coff: CoffHeader = ImageFileHeader> { /* private fields */ }
Expand description
A section in a CoffFile
.
Most functionality is provided by the ObjectSection
trait implementation.
Implementations§
Source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffSection<'data, 'file, R, Coff>
Sourcepub fn coff_file(&self) -> &'file CoffFile<'data, R, Coff>
pub fn coff_file(&self) -> &'file CoffFile<'data, R, Coff>
Get the COFF file containing this section.
Sourcepub fn coff_section(&self) -> &'data ImageSectionHeader
pub fn coff_section(&self) -> &'data ImageSectionHeader
Get the raw COFF section header.
Sourcepub fn coff_relocations(&self) -> Result<&'data [ImageRelocation]>
pub fn coff_relocations(&self) -> Result<&'data [ImageRelocation]>
Get the raw COFF relocations for this section.
Trait Implementations§
Source§impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffSection<'data, 'file, R, Coff>
Source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectSection<'data> for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectSection<'data> for CoffSection<'data, 'file, R, Coff>
Source§type RelocationIterator = CoffRelocationIterator<'data, 'file, R, Coff>
type RelocationIterator = CoffRelocationIterator<'data, 'file, R, Coff>
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) -> CoffRelocationIterator<'data, 'file, R, Coff> ⓘ
fn relocations(&self) -> CoffRelocationIterator<'data, 'file, R, Coff> ⓘ
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.
Auto Trait Implementations§
impl<'data, 'file, R, Coff> Freeze for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> RefUnwindSafe for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Send for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Sync for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> Unpin for CoffSection<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> UnwindSafe for CoffSection<'data, 'file, R, Coff>
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